Alphabetical Index

_ A B C D E F G H I L M N O P Q R S T W

_

_cbuffer - static field in class org.apache.commons.io.HexDump
_hexcodes - static field in class org.apache.commons.io.HexDump
_lbuffer - static field in class org.apache.commons.io.HexDump
_shifts - static field in class org.apache.commons.io.HexDump

A

AbstractFileFilter - class org.apache.commons.io.filefilter.AbstractFileFilter
An abstract class which implements the Java FileFilter and FilenameFilter interfaces via the IOFileFilter interface.
accept(File) - method in class org.apache.commons.io.filefilter.AbstractFileFilter
Checks to see if the File should be accepted by this filter.
accept(File) - method in class org.apache.commons.io.filefilter.AndFileFilter
Checks to see if both filters are true.
accept(File) - method in class org.apache.commons.io.filefilter.DelegateFileFilter
Checks the filter.
accept(File) - method in class org.apache.commons.io.filefilter.DirectoryFileFilter
Checks to see if the file is a directory.
accept(File) - method in class org.apache.commons.io.filefilter.FalseFileFilter
Returns false.
accept(File) - method in class org.apache.commons.io.filefilter.IOFileFilter
Checks to see if the File should be accepted by this filter.
accept(File) - method in class org.apache.commons.io.filefilter.NameFileFilter
Checks to see if the filename matches.
accept(File) - method in class org.apache.commons.io.filefilter.NotFileFilter
Checks to see if both filters are true.
accept(File) - method in class org.apache.commons.io.filefilter.OrFileFilter
Checks to see if either filter is true.
accept(File) - method in class org.apache.commons.io.filefilter.PrefixFileFilter
Checks to see if the filename starts with the prefix.
accept(File) - method in class org.apache.commons.io.filefilter.SuffixFileFilter
Checks to see if the filename ends with the suffix.
accept(File) - method in class org.apache.commons.io.filefilter.TrueFileFilter
Returns true.
accept(File,String) - method in class org.apache.commons.io.filefilter.AbstractFileFilter
Checks to see if the File should be accepted by this filter.
accept(File,String) - method in class org.apache.commons.io.filefilter.AndFileFilter
Checks to see if both filters are true.
accept(File,String) - method in class org.apache.commons.io.filefilter.DelegateFileFilter
Checks the filter.
accept(File,String) - method in class org.apache.commons.io.filefilter.FalseFileFilter
Returns false.
accept(File,String) - method in class org.apache.commons.io.filefilter.IOFileFilter
Checks to see if the File should be accepted by this filter.
accept(File,String) - method in class org.apache.commons.io.filefilter.NameFileFilter
Checks to see if the filename matches.
accept(File,String) - method in class org.apache.commons.io.filefilter.NotFileFilter
Checks to see if both filters are true.
accept(File,String) - method in class org.apache.commons.io.filefilter.OrFileFilter
Checks to see if either filter is true.
accept(File,String) - method in class org.apache.commons.io.filefilter.PrefixFileFilter
Checks to see if the filename starts with the prefix.
accept(File,String) - method in class org.apache.commons.io.filefilter.SuffixFileFilter
Checks to see if the filename ends with the suffix.
accept(File,String) - method in class org.apache.commons.io.filefilter.TrueFileFilter
Returns true.
AndFileFilter - class org.apache.commons.io.filefilter.AndFileFilter
This filter produces a logical AND of the two filters specified.
Constructs a new file filter that ANDs the result of two other filters.
Returns a filter that ANDs the two specified filters.
append - field in class org.apache.commons.io.output.LockableFileWriter
asFileFilter(FileFilter) - static method in class org.apache.commons.io.filefilter.FileFilterUtils
Returns an IOFileFilter that wraps the FileFilter instance.
asFileFilter(FilenameFilter) - static method in class org.apache.commons.io.filefilter.FileFilterUtils
Returns an IOFileFilter that wraps the FilenameFilter instance.
available() - method in class org.apache.commons.io.input.ProxyInputStream

B

bindStream(InputStream) - method in class org.apache.commons.io.input.DemuxInputStream
Bind the specified stream to the current thread.
bindStream(OutputStream) - method in class org.apache.commons.io.output.DemuxOutputStream
Bind the specified stream to the current thread.
branch - field in class org.apache.commons.io.output.TeeOutputStream
the second OutputStream to write to
buffers - field in class org.apache.commons.io.output.ByteArrayOutputStream
ByteArrayOutputStream - class org.apache.commons.io.output.ByteArrayOutputStream
This class implements an output stream in which the data is written into a byte array.
ByteArrayOutputStream() - constructor for class org.apache.commons.io.output.ByteArrayOutputStream
Creates a new byte array output stream.
ByteArrayOutputStream(int) - constructor for class org.apache.commons.io.output.ByteArrayOutputStream
Creates a new byte array output stream, with a buffer capacity of the specified size, in bytes.
byteCountToDisplaySize(long) - static method in class org.apache.commons.io.FileUtils
Returns a human-readable version of the file size (original is in bytes).

C

checkThreshold(int) - method in class org.apache.commons.io.output.ThresholdingOutputStream
Checks to see if writing the specified number of bytes would cause the configured threshold to be exceeded.
cleanDirectory(File) - static method in class org.apache.commons.io.FileUtils
Clean a directory without deleting it.
cleanDirectoryOnExit(File) - static method in class org.apache.commons.io.FileUtils
Clean a directory without deleting it.
close() - method in class org.apache.commons.io.output.ByteArrayOutputStream
Closing a ByteArrayOutputStream has no effect.
close() - method in class org.apache.commons.io.input.DemuxInputStream
Closes stream associated with current thread.
close() - method in class org.apache.commons.io.output.DemuxOutputStream
Closes stream associated with current thread.
close() - method in class org.apache.commons.io.output.LockableFileWriter
close() - method in class org.apache.commons.io.input.ProxyInputStream
close() - method in class org.apache.commons.io.output.ProxyOutputStream
close() - method in class org.apache.commons.io.input.ProxyReader
close() - method in class org.apache.commons.io.output.ProxyWriter
close() - method in class org.apache.commons.io.output.TeeOutputStream
Closes both streams.
close() - method in class org.apache.commons.io.output.ThresholdingOutputStream
Closes this output stream and releases any system resources associated with this stream.
closeQuietly(InputStream) - static method in class org.apache.commons.io.IOUtils
Unconditionally close an InputStream.
closeQuietly(OutputStream) - static method in class org.apache.commons.io.IOUtils
Unconditionally close an OutputStream.
closeQuietly(Reader) - static method in class org.apache.commons.io.IOUtils
Unconditionally close an Reader.
closeQuietly(Writer) - static method in class org.apache.commons.io.IOUtils
Unconditionally close an Writer.
contentEquals(File,File) - static method in class org.apache.commons.io.FileUtils
Compare the contents of two files to determine if they are equal or not.
contentEquals(InputStream,InputStream) - static method in class org.apache.commons.io.IOUtils
Compare the contents of two Streams to determine if they are equal or not.
convertFileCollectionToFileArray(Collection) - static method in class org.apache.commons.io.FileUtils
Converts a Collection containing java.io.File instanced into array representation.
copy(byte[],OutputStream) - static method in class org.apache.commons.io.CopyUtils
Copy bytes from a byte[] to an OutputStream.
copy(byte[],Writer) - static method in class org.apache.commons.io.CopyUtils
Copy and convert bytes from a byte[] to chars on a Writer.
copy(byte[],Writer,String) - static method in class org.apache.commons.io.CopyUtils
Copy and convert bytes from a byte[] to chars on a Writer, using the specified encoding.
copy(InputStream,OutputStream) - static method in class org.apache.commons.io.CopyUtils
Copy bytes from an InputStream to an OutputStream.
copy(InputStream,Writer) - static method in class org.apache.commons.io.CopyUtils
Copy and convert bytes from an InputStream to chars on a Writer.
copy(InputStream,Writer,String) - static method in class org.apache.commons.io.CopyUtils
Copy and convert bytes from an InputStream to chars on a Writer, using the specified encoding.
copy(Reader,OutputStream) - static method in class org.apache.commons.io.CopyUtils
Serialize chars from a Reader to bytes on an OutputStream, and flush the OutputStream.
copy(Reader,Writer) - static method in class org.apache.commons.io.CopyUtils
Copy chars from a Reader to a Writer.
copy(String,OutputStream) - static method in class org.apache.commons.io.CopyUtils
Serialize chars from a String to bytes on an OutputStream, and flush the OutputStream.
copy(String,Writer) - static method in class org.apache.commons.io.CopyUtils
Copy chars from a String to a Writer.
copyFile(File,File) - static method in class org.apache.commons.io.FileUtils
Copy file from source to destination.
copyFile(File,File,boolean) - static method in class org.apache.commons.io.FileUtils
Copy file from source to destination.
copyFileToDirectory(File,File) - static method in class org.apache.commons.io.FileUtils
Copy file from source to destination.
copyURLToFile(URL,File) - static method in class org.apache.commons.io.FileUtils
Copies bytes from the URL source to a file destination.
CopyUtils - class org.apache.commons.io.CopyUtils
This class provides static utility methods for buffered copying between sources (InputStream, Reader, String and byte[]) and destinations (OutputStream, Writer, String and byte[]).
CopyUtils() - constructor for class org.apache.commons.io.CopyUtils
Instances should NOT be constructed in standard programming.
count - field in class org.apache.commons.io.output.ByteArrayOutputStream
count - field in class org.apache.commons.io.input.CountingInputStream
count - field in class org.apache.commons.io.output.CountingOutputStream
CountingInputStream - class org.apache.commons.io.input.CountingInputStream
Used in debugging, it counts the number of bytes that pass through it.
CountingInputStream(InputStream) - constructor for class org.apache.commons.io.input.CountingInputStream
Constructs a new CountingInputStream.
CountingOutputStream - class org.apache.commons.io.output.CountingOutputStream
Used in debugging, it counts the number of bytes that pass through it.
CountingOutputStream(OutputStream) - constructor for class org.apache.commons.io.output.CountingOutputStream
Constructs a CountingOutputStream.
createLock() - method in class org.apache.commons.io.output.LockableFileWriter
currentBuffer - field in class org.apache.commons.io.output.ByteArrayOutputStream
currentBufferIndex - field in class org.apache.commons.io.output.ByteArrayOutputStream
currentOutputStream - field in class org.apache.commons.io.output.DeferredFileOutputStream
The output stream to which data will be written at any given time.
cvsFilter - static field in class org.apache.commons.io.filefilter.FileFilterUtils

D

DEFAULT_BUFFER_SIZE - static field in class org.apache.commons.io.CopyUtils
The name says it all.
DEFAULT_BUFFER_SIZE - static field in class org.apache.commons.io.IOUtils
DeferredFileOutputStream - class org.apache.commons.io.output.DeferredFileOutputStream
An output stream which will retain data in memory until a specified threshold is reached, and only then commit it to disk.
DeferredFileOutputStream(int,File) - constructor for class org.apache.commons.io.output.DeferredFileOutputStream
Constructs an instance of this class which will trigger an event at the specified threshold, and save data to a file beyond that point.
DelegateFileFilter - class org.apache.commons.io.filefilter.DelegateFileFilter
This class turns a Java FileFilter or FilenameFilter into an IO FileFilter.
DelegateFileFilter(FileFilter) - constructor for class org.apache.commons.io.filefilter.DelegateFileFilter
Constructs a delegate file filter around an existing FileFilter.
DelegateFileFilter(FilenameFilter) - constructor for class org.apache.commons.io.filefilter.DelegateFileFilter
Constructs a delegate file filter around an existing FilenameFilter.
delete() - method in class org.apache.commons.io.FileCleaner.Tracker
Deletes the file associated with this tracker instance.
deleteDirectory(File) - static method in class org.apache.commons.io.FileUtils
Recursively delete a directory.
deleteDirectoryOnExit(File) - static method in class org.apache.commons.io.FileUtils
Recursively schedule directory for deletion on JVM exit.
DemuxInputStream - class org.apache.commons.io.input.DemuxInputStream
Data written to this stream is forwarded to a stream that has been associated with this thread.
DemuxOutputStream - class org.apache.commons.io.output.DemuxOutputStream
Data written to this stream is forwarded to a stream that has been associated with this thread.
DirectoryFileFilter - class org.apache.commons.io.filefilter.DirectoryFileFilter
This filter accepts Files that are directories.
DirectoryFileFilter() - constructor for class org.apache.commons.io.filefilter.DirectoryFileFilter
Restrictive consructor.
directoryFileFilter() - static method in class org.apache.commons.io.filefilter.FileFilterUtils
Returns a filter that checks if the file is a directory.
diskOutputStream - field in class org.apache.commons.io.output.DeferredFileOutputStream
The output stream to which data will be written after the theshold is reached.
dump(byte) - static method in class org.apache.commons.io.HexDump
dump(byte[],long,OutputStream,int) - static method in class org.apache.commons.io.HexDump
dump an array of bytes to an OutputStream
dump(long) - static method in class org.apache.commons.io.HexDump

E

EndianUtils - class org.apache.commons.io.EndianUtils
Utility code for dealing with different endian systems.
EndianUtils() - constructor for class org.apache.commons.io.EndianUtils
Instances should NOT be constructed in standard programming.
EOL - static field in class org.apache.commons.io.HexDump
line-separator (initializes to "line.separator" system property.

F

FalseFileFilter - class org.apache.commons.io.filefilter.FalseFileFilter
A file filter that always returns false.
FalseFileFilter() - constructor for class org.apache.commons.io.filefilter.FalseFileFilter
Restrictive consructor.
falseFileFilter() - static method in class org.apache.commons.io.filefilter.FileFilterUtils
Returns a filter that always returns false.
FileCleaner - class org.apache.commons.io.FileCleaner
Keeps track of files awaiting deletion, and deletes them when an associated marker object is reclaimed by the garbage collector.
fileFilter - field in class org.apache.commons.io.filefilter.DelegateFileFilter
The File filter
FileFilterUtils - class org.apache.commons.io.filefilter.FileFilterUtils
Useful utilities for working with file filters.
FileFilterUtils() - constructor for class org.apache.commons.io.filefilter.FileFilterUtils
FileFilterUtils is not normally instantiated.
filenameFilter - field in class org.apache.commons.io.filefilter.DelegateFileFilter
The Filename filter
FileUtils - class org.apache.commons.io.FileUtils
This class provides basic facilities for manipulating files and file paths.
FileUtils() - constructor for class org.apache.commons.io.FileUtils
Instances should NOT be constructed in standard programming.
filledBufferSum - field in class org.apache.commons.io.output.ByteArrayOutputStream
filter - field in class org.apache.commons.io.filefilter.NotFileFilter
The filter
filter1 - field in class org.apache.commons.io.filefilter.AndFileFilter
The first filter
filter1 - field in class org.apache.commons.io.filefilter.OrFileFilter
The first filter
filter2 - field in class org.apache.commons.io.filefilter.AndFileFilter
The second filter
filter2 - field in class org.apache.commons.io.filefilter.OrFileFilter
The second filter
flush() - method in class org.apache.commons.io.output.DemuxOutputStream
Flushes stream associated with current thread.
flush() - method in class org.apache.commons.io.output.LockableFileWriter
flush() - method in class org.apache.commons.io.output.ProxyOutputStream
flush() - method in class org.apache.commons.io.output.ProxyWriter
flush() - method in class org.apache.commons.io.output.TeeOutputStream
Flushes both streams.
flush() - method in class org.apache.commons.io.output.ThresholdingOutputStream
Flushes this output stream and forces any buffered output bytes to be written out.
forceDelete(File) - static method in class org.apache.commons.io.FileUtils
Delete a file.
forceDeleteOnExit(File) - static method in class org.apache.commons.io.FileUtils
Schedule a file to be deleted when JVM exits.
forceMkdir(File) - static method in class org.apache.commons.io.FileUtils
Make a directory.

G

getBuffer(int) - method in class org.apache.commons.io.output.ByteArrayOutputStream
getByteCount() - method in class org.apache.commons.io.output.ThresholdingOutputStream
Returns the number of bytes that have been written to this output stream.
getCount() - method in class org.apache.commons.io.input.CountingInputStream
The number of bytes that have passed through this stream.
getCount() - method in class org.apache.commons.io.output.CountingOutputStream
The number of bytes that have passed through this stream.
getData() - method in class org.apache.commons.io.output.DeferredFileOutputStream
Returns the data for this output stream as an array of bytes, assuming that the data has been retained in memory.
getFile() - method in class org.apache.commons.io.output.DeferredFileOutputStream
Returns the data for this output stream as a File, assuming that the data was written to disk.
getStream() - method in class org.apache.commons.io.output.DeferredFileOutputStream
Returns the current output stream.
getStream() - method in class org.apache.commons.io.input.DemuxInputStream
Utility method to retrieve stream bound to current thread (if any).
getStream() - method in class org.apache.commons.io.output.DemuxOutputStream
Utility method to retrieve stream bound to current thread (if any).
getStream() - method in class org.apache.commons.io.output.ThresholdingOutputStream
Returns the underlying output stream, to which the corresponding OutputStream methods in this class will ultimately delegate.
getThreshold() - method in class org.apache.commons.io.output.ThresholdingOutputStream
Returns the threshold, in bytes, at which an event will be triggered.
getTrackCount() - static method in class org.apache.commons.io.FileCleaner
Retrieve the number of files currently being tracked, and therefore awaiting deletion.

H

HexDump - class org.apache.commons.io.HexDump
Dumps data in hexadecimal format.
HexDump() - constructor for class org.apache.commons.io.HexDump
Instances should NOT be constructed in standard programming.

I

INSTANCE - static field in class org.apache.commons.io.filefilter.DirectoryFileFilter
Singleton instance of directory filter
INSTANCE - static field in class org.apache.commons.io.filefilter.FalseFileFilter
Singleton instance of false filter
INSTANCE - static field in class org.apache.commons.io.filefilter.TrueFileFilter
Singleton instance of true filter
IOFileFilter - interface org.apache.commons.io.filefilter.IOFileFilter
An interface which brings the FileFilter and FilenameFilter interfaces together.
IOUtils - class org.apache.commons.io.IOUtils
General IO Stream manipulation.
IOUtils() - constructor for class org.apache.commons.io.IOUtils
Instances should NOT be constructed in standard programming.
isFileNewer(File,Date) - static method in class org.apache.commons.io.FileUtils
Tests if the specified File is newer than the specified Date
isFileNewer(File,File) - static method in class org.apache.commons.io.FileUtils
Tests if the specified File is newer than the reference File.
isFileNewer(File,long) - static method in class org.apache.commons.io.FileUtils
Tests if the specified File is newer than the specified time reference.
isInMemory() - method in class org.apache.commons.io.output.DeferredFileOutputStream
Determines whether or not the data for this output stream has been retained in memory.
isThresholdExceeded() - method in class org.apache.commons.io.output.ThresholdingOutputStream
Determines whether or not the configured threshold has been exceeded for this output stream.

L

LCK - static field in class org.apache.commons.io.output.LockableFileWriter
Finds files within a given directory (and optionally its subdirectories).
listFiles(File,String[],boolean) - static method in class org.apache.commons.io.FileUtils
Finds files within a given directory (and optionally its subdirectories) which match an array of extensions.
LockableFileWriter - class org.apache.commons.io.output.LockableFileWriter
FileWriter that will create and honor lock files to allow simple cross thread file lock handling.
LockableFileWriter(File) - constructor for class org.apache.commons.io.output.LockableFileWriter
Constructs a LockableFileWriter.
LockableFileWriter(File,boolean) - constructor for class org.apache.commons.io.output.LockableFileWriter
Constructs a LockableFileWriter.
LockableFileWriter(File,boolean,String) - constructor for class org.apache.commons.io.output.LockableFileWriter
Constructs a LockableFileWriter.
LockableFileWriter(String) - constructor for class org.apache.commons.io.output.LockableFileWriter
Constructs a LockableFileWriter.
LockableFileWriter(String,boolean) - constructor for class org.apache.commons.io.output.LockableFileWriter
Constructs a LockableFileWriter.
LockableFileWriter(String,boolean,String) - constructor for class org.apache.commons.io.output.LockableFileWriter
Constructs a LockableFileWriter.
lockFile - field in class org.apache.commons.io.output.LockableFileWriter

M

m_streams - field in class org.apache.commons.io.input.DemuxInputStream
m_streams - field in class org.apache.commons.io.output.DemuxOutputStream
makeCVSAware(org.apache.commons.io.filefilter.IOFileFilter) - static method in class org.apache.commons.io.filefilter.FileFilterUtils
Resturns an IOFileFilter that ignores CVS directories.
mark(int) - method in class org.apache.commons.io.input.ProxyInputStream
mark(int) - method in class org.apache.commons.io.input.ProxyReader
markSupported() - method in class org.apache.commons.io.input.ProxyInputStream
markSupported() - method in class org.apache.commons.io.input.ProxyReader
memoryOutputStream - field in class org.apache.commons.io.output.DeferredFileOutputStream
The output stream to which data will be written prior to the theshold being reached.

N

NameFileFilter - class org.apache.commons.io.filefilter.NameFileFilter
Filters filenames for a certain name.
NameFileFilter(List) - constructor for class org.apache.commons.io.filefilter.NameFileFilter
Constructs a new name file filter for a list of names.
nameFileFilter(String) - static method in class org.apache.commons.io.filefilter.FileFilterUtils
Returns a filter that returns true if the filename matches the specified text.
NameFileFilter(String) - constructor for class org.apache.commons.io.filefilter.NameFileFilter
Constructs a new name file filter for a single name.
NameFileFilter(String[]) - constructor for class org.apache.commons.io.filefilter.NameFileFilter
Constructs a new name file filter for any of an array of names.
names - field in class org.apache.commons.io.filefilter.NameFileFilter
The filenames to search for
needNewBuffer(int) - method in class org.apache.commons.io.output.ByteArrayOutputStream
NotFileFilter - class org.apache.commons.io.filefilter.NotFileFilter
This filter produces a logical NOT of the filters specified.
notFileFilter(org.apache.commons.io.filefilter.IOFileFilter) - static method in class org.apache.commons.io.filefilter.FileFilterUtils
Returns a filter that NOTs the specified filter.
NotFileFilter(org.apache.commons.io.filefilter.IOFileFilter) - constructor for class org.apache.commons.io.filefilter.NotFileFilter
Constructs a new file filter that NOTs the result of another filters.
NullOutputStream - class org.apache.commons.io.output.NullOutputStream
This OutputStream writes all data to the famous /dev/null.

O

ONE_GB - static field in class org.apache.commons.io.FileUtils
The number of bytes in a gigabyte.
ONE_KB - static field in class org.apache.commons.io.FileUtils
The number of bytes in a kilobyte.
ONE_MB - static field in class org.apache.commons.io.FileUtils
The number of bytes in a megabyte.
OrFileFilter - class org.apache.commons.io.filefilter.OrFileFilter
This filter produces a logical OR of the two filters specified.
Returns a filter that ORs the two specified filters.
Constructs a new file filter that ORs the result of two other filters.
Utility code for IO operations.
This package defines an interface (IOFileFilter) that combines both java.io.FileFilter and java.io.FilenameFilter.
Implementations of input classes, such as InputStream and Reader.
Implementations of output classes, such as OutputStream and Writer.
outputFile - field in class org.apache.commons.io.output.DeferredFileOutputStream
The file to which output will be directed if the threshold is exceeded.

P

path - field in class org.apache.commons.io.FileCleaner.Tracker
The full path to the file being tracked.
prefixes - field in class org.apache.commons.io.filefilter.PrefixFileFilter
The filename prefixes to search for
PrefixFileFilter - class org.apache.commons.io.filefilter.PrefixFileFilter
Filters filenames for a certain prefix.
PrefixFileFilter(List) - constructor for class org.apache.commons.io.filefilter.PrefixFileFilter
Constructs a new Prefix file filter for a list of prefixes.
prefixFileFilter(String) - static method in class org.apache.commons.io.filefilter.FileFilterUtils
Returns a filter that returns true if the filename starts with the specified text.
PrefixFileFilter(String) - constructor for class org.apache.commons.io.filefilter.PrefixFileFilter
Constructs a new Prefix file filter for a single prefix.
PrefixFileFilter(String[]) - constructor for class org.apache.commons.io.filefilter.PrefixFileFilter
Constructs a new Prefix file filter for any of an array of prefixes.
proxy - field in class org.apache.commons.io.input.ProxyInputStream
proxy - field in class org.apache.commons.io.output.ProxyOutputStream
proxy - field in class org.apache.commons.io.input.ProxyReader
proxy - field in class org.apache.commons.io.output.ProxyWriter
ProxyInputStream - class org.apache.commons.io.input.ProxyInputStream
A Proxy stream which acts as expected, that is it passes the method calls on to the proxied stream and doesn't change which methods are being called.
ProxyInputStream(InputStream) - constructor for class org.apache.commons.io.input.ProxyInputStream
Constructs a new ProxyInputStream.
ProxyOutputStream - class org.apache.commons.io.output.ProxyOutputStream
A Proxy stream which acts as expected, that is it passes the method calls on to the proxied stream and doesn't change which methods are being called.
ProxyOutputStream(OutputStream) - constructor for class org.apache.commons.io.output.ProxyOutputStream
Constructs a new ProxyOutputStream.
ProxyReader - class org.apache.commons.io.input.ProxyReader
A Proxy stream which acts as expected, that is it passes the method calls on to the proxied stream and doesn't change which methods are being called.
ProxyReader(Reader) - constructor for class org.apache.commons.io.input.ProxyReader
Constructs a new ProxyReader.
ProxyWriter - class org.apache.commons.io.output.ProxyWriter
A Proxy stream which acts as expected, that is it passes the method calls on to the proxied stream and doesn't change which methods are being called.
ProxyWriter(Writer) - constructor for class org.apache.commons.io.output.ProxyWriter
Constructs a new ProxyWriter.

Q

q - static field in class org.apache.commons.io.FileCleaner
Queue of Tracker instances being watched.

R

read() - method in class org.apache.commons.io.input.CountingInputStream
Increases the count by 1.
read() - method in class org.apache.commons.io.input.DemuxInputStream
Read byte from stream associated with current thread.
read() - method in class org.apache.commons.io.input.ProxyInputStream
read() - method in class org.apache.commons.io.input.ProxyReader
read(byte[]) - method in class org.apache.commons.io.input.CountingInputStream
Increases the count by super.read(b)'s return count
read(byte[]) - method in class org.apache.commons.io.input.ProxyInputStream
read(byte[],int,int) - method in class org.apache.commons.io.input.CountingInputStream
Increases the count by super.read(b, off, len)'s return count
read(byte[],int,int) - method in class org.apache.commons.io.input.ProxyInputStream
read(char[]) - method in class org.apache.commons.io.input.ProxyReader
read(char[],int,int) - method in class org.apache.commons.io.input.ProxyReader
read(InputStream) - static method in class org.apache.commons.io.EndianUtils
readBoolean() - method in class org.apache.commons.io.input.SwappedDataInputStream
readByte() - method in class org.apache.commons.io.input.SwappedDataInputStream
readChar() - method in class org.apache.commons.io.input.SwappedDataInputStream
readDouble() - method in class org.apache.commons.io.input.SwappedDataInputStream
readFileToString(File,String) - static method in class org.apache.commons.io.FileUtils
Reads the contents of a file into a String.
readFloat() - method in class org.apache.commons.io.input.SwappedDataInputStream
readFully(byte[]) - method in class org.apache.commons.io.input.SwappedDataInputStream
readFully(byte[],int,int) - method in class org.apache.commons.io.input.SwappedDataInputStream
readInt() - method in class org.apache.commons.io.input.SwappedDataInputStream
readLine() - method in class org.apache.commons.io.input.SwappedDataInputStream
Not currently supported.
readLong() - method in class org.apache.commons.io.input.SwappedDataInputStream
readShort() - method in class org.apache.commons.io.input.SwappedDataInputStream
readSwappedDouble(byte[],int) - static method in class org.apache.commons.io.EndianUtils
Reads a "double" value from a byte array at a given offset.
readSwappedDouble(InputStream) - static method in class org.apache.commons.io.EndianUtils
Reads a "double" value from an InputStream.
readSwappedFloat(byte[],int) - static method in class org.apache.commons.io.EndianUtils
Reads a "float" value from a byte array at a given offset.
readSwappedFloat(InputStream) - static method in class org.apache.commons.io.EndianUtils
Reads a "float" value from an InputStream.
readSwappedInteger(byte[],int) - static method in class org.apache.commons.io.EndianUtils
Reads a "int" value from a byte array at a given offset.
readSwappedInteger(InputStream) - static method in class org.apache.commons.io.EndianUtils
Reads a "int" value from an InputStream.
readSwappedLong(byte[],int) - static method in class org.apache.commons.io.EndianUtils
Reads a "long" value from a byte array at a given offset.
readSwappedLong(InputStream) - static method in class org.apache.commons.io.EndianUtils
Reads a "long" value from an InputStream.
readSwappedShort(byte[],int) - static method in class org.apache.commons.io.EndianUtils
Reads a "short" value from a byte array at a given offset.
readSwappedShort(InputStream) - static method in class org.apache.commons.io.EndianUtils
Reads a "short" value from an InputStream.
readSwappedUnsignedInteger(byte[],int) - static method in class org.apache.commons.io.EndianUtils
Reads an unsigned integer (32-bit) value from a byte array at a given offset.
readSwappedUnsignedInteger(InputStream) - static method in class org.apache.commons.io.EndianUtils
Reads a unsigned integer (32-bit) from an InputStream.
readSwappedUnsignedShort(byte[],int) - static method in class org.apache.commons.io.EndianUtils
Reads an unsigned short (16-bit) value from a byte array at a given offset.
readSwappedUnsignedShort(InputStream) - static method in class org.apache.commons.io.EndianUtils
Reads a unsigned short (16-bit) from an InputStream.
readUnsignedByte() - method in class org.apache.commons.io.input.SwappedDataInputStream
readUnsignedShort() - method in class org.apache.commons.io.input.SwappedDataInputStream
readUTF() - method in class org.apache.commons.io.input.SwappedDataInputStream
Not currently supported.
ready() - method in class org.apache.commons.io.input.ProxyReader
reaper - static field in class org.apache.commons.io.FileCleaner
The thread that will clean up registered files.
reset() - method in class org.apache.commons.io.output.ByteArrayOutputStream
reset() - method in class org.apache.commons.io.input.ProxyInputStream
reset() - method in class org.apache.commons.io.input.ProxyReader

S

size() - method in class org.apache.commons.io.output.ByteArrayOutputStream
sizeOfDirectory(File) - static method in class org.apache.commons.io.FileUtils
Recursively count size of a directory (sum of the length of all files).
skip(long) - method in class org.apache.commons.io.input.ProxyInputStream
skip(long) - method in class org.apache.commons.io.input.ProxyReader
skipBytes(int) - method in class org.apache.commons.io.input.SwappedDataInputStream
suffixes - field in class org.apache.commons.io.filefilter.SuffixFileFilter
The filename suffixes to search for
SuffixFileFilter - class org.apache.commons.io.filefilter.SuffixFileFilter
Filters files based on the suffix (what the filename ends with).
SuffixFileFilter(List) - constructor for class org.apache.commons.io.filefilter.SuffixFileFilter
Constructs a new Suffix file filter for a list of suffixes.
suffixFileFilter(String) - static method in class org.apache.commons.io.filefilter.FileFilterUtils
Returns a filter that returns true if the filename ends with the specified text.
SuffixFileFilter(String) - constructor for class org.apache.commons.io.filefilter.SuffixFileFilter
Constructs a new Suffix file filter for a single extension.
SuffixFileFilter(String[]) - constructor for class org.apache.commons.io.filefilter.SuffixFileFilter
Constructs a new Suffix file filter for an array of suffixs.
swapDouble(double) - static method in class org.apache.commons.io.EndianUtils
Converts a "double" value between endian systems.
swapFloat(float) - static method in class org.apache.commons.io.EndianUtils
Converts a "float" value between endian systems.
swapInteger(int) - static method in class org.apache.commons.io.EndianUtils
Converts a "int" value between endian systems.
swapLong(long) - static method in class org.apache.commons.io.EndianUtils
Converts a "long" value between endian systems.
SwappedDataInputStream - class org.apache.commons.io.input.SwappedDataInputStream
DataInput for systems relying on little endian data formats.
SwappedDataInputStream(InputStream) - constructor for class org.apache.commons.io.input.SwappedDataInputStream
Constructs a SwappedDataInputStream.
swapShort(short) - static method in class org.apache.commons.io.EndianUtils
Converts a "short" value between endian systems.

T

TeeOutputStream - class org.apache.commons.io.output.TeeOutputStream
Classic splitter of OutputStream.
TeeOutputStream(OutputStream,OutputStream) - constructor for class org.apache.commons.io.output.TeeOutputStream
Constructs a TeeOutputStream.
testLockDir(File) - method in class org.apache.commons.io.output.LockableFileWriter
threshold - field in class org.apache.commons.io.output.ThresholdingOutputStream
The threshold at which the event will be triggered.
thresholdExceeded - field in class org.apache.commons.io.output.ThresholdingOutputStream
Whether or not the configured threshold has been exceeded.
ThresholdingOutputStream - class org.apache.commons.io.output.ThresholdingOutputStream
An output stream which triggers an event when a specified number of bytes of data have been written to it.
ThresholdingOutputStream(int) - constructor for class org.apache.commons.io.output.ThresholdingOutputStream
Constructs an instance of this class which will trigger an event at the specified threshold.
thresholdReached() - method in class org.apache.commons.io.output.DeferredFileOutputStream
Switches the underlying output stream from a memory based stream to one that is backed by disk.
thresholdReached() - method in class org.apache.commons.io.output.ThresholdingOutputStream
Indicates that the configured threshold has been reached, and that a subclass should take whatever action necessary on this event.
toByteArray() - method in class org.apache.commons.io.output.ByteArrayOutputStream
toByteArray(InputStream) - static method in class org.apache.commons.io.IOUtils
Get the contents of an InputStream as a byte[].
toByteArray(Reader) - static method in class org.apache.commons.io.IOUtils
Get the contents of a Reader as a byte[].
toByteArray(String) - static method in class org.apache.commons.io.IOUtils
Get the contents of a String as a byte[].
toFile(URL) - static method in class org.apache.commons.io.FileUtils
Convert from a URL to a File.
toString() - method in class org.apache.commons.io.output.ByteArrayOutputStream
toString(byte[]) - static method in class org.apache.commons.io.IOUtils
Get the contents of a byte[] as a String.
toString(byte[],String) - static method in class org.apache.commons.io.IOUtils
Get the contents of a byte[] as a String.
toString(InputStream) - static method in class org.apache.commons.io.IOUtils
Get the contents of an InputStream as a String.
toString(InputStream,String) - static method in class org.apache.commons.io.IOUtils
Get the contents of an InputStream as a String.
toString(Reader) - static method in class org.apache.commons.io.IOUtils
Get the contents of a Reader as a String.
toString(String) - method in class org.apache.commons.io.output.ByteArrayOutputStream
toSuffixes(String[]) - static method in class org.apache.commons.io.FileUtils
Converts an array of file extensions to suffixes for use with IOFileFilters.
touch(File) - static method in class org.apache.commons.io.FileUtils
Implements the same behaviour as the "touch" utility on Unix.
toURLs(File[]) - static method in class org.apache.commons.io.FileUtils
Convert the array of Files into a list of URLs.
track(File,Object) - static method in class org.apache.commons.io.FileCleaner
Track the specified file, using the provided marker, deleting the file when the marker instance is garbage collected.
track(String,Object) - static method in class org.apache.commons.io.FileCleaner
Track the specified file, using the provided marker, deleting the file when the marker instance is garbage collected.
FileCleaner.Tracker - class org.apache.commons.io.FileCleaner.Tracker
Inner class which acts as the reference for a file pending deletion.
Tracker(File,Object,ReferenceQueue) - constructor for class org.apache.commons.io.FileCleaner.Tracker
Constructs an instance of this class from the supplied parameters.
Tracker(String,Object,ReferenceQueue) - constructor for class org.apache.commons.io.FileCleaner.Tracker
Constructs an instance of this class from the supplied parameters.
trackers - static field in class org.apache.commons.io.FileCleaner
Collection of Tracker instances in existence.
TrueFileFilter - class org.apache.commons.io.filefilter.TrueFileFilter
A file filter that always returns true.
trueFileFilter() - static method in class org.apache.commons.io.filefilter.FileFilterUtils
Returns a filter that always returns true.
TrueFileFilter() - constructor for class org.apache.commons.io.filefilter.TrueFileFilter
Restrictive consructor.

W

waitFor(File,int) - static method in class org.apache.commons.io.FileUtils
Waits for NFS to propagate a file creation, imposing a timeout.
write(b[]) - method in class org.apache.commons.io.output.ThresholdingOutputStream
Writes b.length bytes from the specified byte array to this output stream.
write(b[],int,int) - method in class org.apache.commons.io.output.ThresholdingOutputStream
Writes len bytes from the specified byte array starting at offset off to this output stream.
write(byte[]) - method in class org.apache.commons.io.output.CountingOutputStream
write(byte[]) - method in class org.apache.commons.io.output.NullOutputStream
write(byte[]) - method in class org.apache.commons.io.output.ProxyOutputStream
write(byte[]) - method in class org.apache.commons.io.output.TeeOutputStream
write(byte[],int,int) - method in class org.apache.commons.io.output.ByteArrayOutputStream
write(byte[],int,int) - method in class org.apache.commons.io.output.CountingOutputStream
write(byte[],int,int) - method in class org.apache.commons.io.output.NullOutputStream
write(byte[],int,int) - method in class org.apache.commons.io.output.ProxyOutputStream
write(byte[],int,int) - method in class org.apache.commons.io.output.TeeOutputStream
write(char[]) - method in class org.apache.commons.io.output.ProxyWriter
write(char[],int,int) - method in class org.apache.commons.io.output.LockableFileWriter
write(char[],int,int) - method in class org.apache.commons.io.output.ProxyWriter
write(int) - method in class org.apache.commons.io.output.ByteArrayOutputStream
Calls the write(byte[]) method.
write(int) - method in class org.apache.commons.io.output.CountingOutputStream
write(int) - method in class org.apache.commons.io.output.DemuxOutputStream
Writes byte to stream associated with current thread.
write(int) - method in class org.apache.commons.io.output.NullOutputStream
write(int) - method in class org.apache.commons.io.output.ProxyOutputStream
write(int) - method in class org.apache.commons.io.output.ProxyWriter
write(int) - method in class org.apache.commons.io.output.TeeOutputStream
write(int) - method in class org.apache.commons.io.output.ThresholdingOutputStream
Writes the specified byte to this output stream.
write(String) - method in class org.apache.commons.io.output.ProxyWriter
write(String,int,int) - method in class org.apache.commons.io.output.ProxyWriter
writer - field in class org.apache.commons.io.output.LockableFileWriter
writeStringToFile(File,String,String) - static method in class org.apache.commons.io.FileUtils
Writes data to a file.
writeSwappedDouble(byte[],int,double) - static method in class org.apache.commons.io.EndianUtils
Writes a "double" value to a byte array at a given offset.
writeSwappedDouble(OutputStream,double) - static method in class org.apache.commons.io.EndianUtils
Writes a "double" value to an OutputStream.
writeSwappedFloat(byte[],int,float) - static method in class org.apache.commons.io.EndianUtils
Writes a "float" value to a byte array at a given offset.
writeSwappedFloat(OutputStream,float) - static method in class org.apache.commons.io.EndianUtils
Writes a "float" value to an OutputStream.
writeSwappedInteger(byte[],int,int) - static method in class org.apache.commons.io.EndianUtils
Writes a "int" value to a byte array at a given offset.
writeSwappedInteger(OutputStream,int) - static method in class org.apache.commons.io.EndianUtils
Writes a "int" value to an OutputStream.
writeSwappedLong(byte[],int,long) - static method in class org.apache.commons.io.EndianUtils
Writes a "long" value to a byte array at a given offset.
writeSwappedLong(OutputStream,long) - static method in class org.apache.commons.io.EndianUtils
Writes a "long" value to an OutputStream.
writeSwappedShort(byte[],int,short) - static method in class org.apache.commons.io.EndianUtils
Writes a "short" value to a byte array at a given offset.
writeSwappedShort(OutputStream,short) - static method in class org.apache.commons.io.EndianUtils
Writes a "short" value to an OutputStream.
writeTo(OutputStream) - method in class org.apache.commons.io.output.ByteArrayOutputStream
written - field in class org.apache.commons.io.output.ThresholdingOutputStream
The number of bytes written to the output stream.