A B C D E F G H I J L M N P Q R S T U V W Y Z

A

AbstractComplexFileVisitor<T extends ComplexFile> - Class in uk.org.retep.util.io
An abstract implementation of ComplexFileVisitor which can log a message every time a visit on a File returns true.
AbstractComplexFileVisitor() - Constructor for class uk.org.retep.util.io.AbstractComplexFileVisitor
Create a visitor with no logging
AbstractComplexFileVisitor(Log) - Constructor for class uk.org.retep.util.io.AbstractComplexFileVisitor
Equivalent to new AbstractFileVisitor( log, "Modified %s" );
AbstractComplexFileVisitor(Log, String) - Constructor for class uk.org.retep.util.io.AbstractComplexFileVisitor
Construct a visitor with a Log and a message to log whenever an action is performed and returns true.
AbstractFileVisitor - Class in uk.org.retep.util.io
An abstract implementation of FileVisitor which can log a message every time a visit on a File returns true.
AbstractFileVisitor() - Constructor for class uk.org.retep.util.io.AbstractFileVisitor
Create a visitor with no logging
AbstractFileVisitor(Log) - Constructor for class uk.org.retep.util.io.AbstractFileVisitor
Equivalent to new AbstractFileVisitor( log, "Modified %s" );
AbstractFileVisitor(Log, String) - Constructor for class uk.org.retep.util.io.AbstractFileVisitor
Construct a visitor with a Log and a message to log whenever an action is performed and returns true.
accept(File) - Method in class uk.org.retep.util.io.FileFilterSet
 
accept(File) - Method in class uk.org.retep.util.io.LogicFileFilter.And
 
accept(File) - Method in class uk.org.retep.util.io.LogicFileFilter.Not
 
accept(File) - Method in class uk.org.retep.util.io.LogicFileFilter.Or
 
accept(File) - Method in class uk.org.retep.util.io.PackageFileFilter.Exclude
Accept all files that are beneath the base directory and do not match any Pattern
accept(File) - Method in class uk.org.retep.util.io.PackageFileFilter.Include
Accept all files that are beneath the base directory and match at least one Pattern
accept(File) - Method in class uk.org.retep.util.io.PatternFileFilter.Exclude
Accept all files that are beneath the base directory and do not match any Pattern
accept(File) - Method in class uk.org.retep.util.io.PatternFileFilter.Include
Accept all files that are beneath the base directory and match at least one Pattern
add(byte) - Method in class uk.org.retep.util.io.CRC16
Add the byte to the CRC
add(byte[]) - Method in class uk.org.retep.util.io.CRC16
Add the byte[] to the CRC
add(byte[], int, int) - Method in class uk.org.retep.util.io.CRC16
Add the byte[] to the CRC
add(FileFilter...) - Method in class uk.org.retep.util.io.LogicFileFilter
 
add(String) - Method in class uk.org.retep.util.io.PackageFileFilter
Add a glob to the filter.
add(Pattern) - Method in class uk.org.retep.util.io.PatternFileFilter
Add a Pattern to the filter.
add(String) - Method in class uk.org.retep.util.io.PatternFileFilter
Add a pattern to the filter.
add(ProgressListener, ProgressListener) - Static method in class uk.org.retep.util.monitor.ProgressListenerSet
Utility method that allows a ProgressListener to be added to an existing ProgressListener using the following schematics: If the current listener is null then this returns the new listener.
add(ProgressListener) - Method in class uk.org.retep.util.monitor.ProgressListenerSet
Add a ProgressListener to the set
addAll(FileFilter...) - Method in class uk.org.retep.util.io.FileFilterSet
 
addAll(Pattern...) - Method in class uk.org.retep.util.io.PatternFileFilter
Add an array of Pattern's to the filter
addAll(Collection<?>) - Method in class uk.org.retep.util.io.PatternFileFilter
Add a Collection of pattern's to the filter.
addAll(String...) - Method in class uk.org.retep.util.io.PatternFileFilter
Add an array of Patterns to the filter
ALBUM - Static variable in class uk.org.retep.util.io.MP3
Tag name containing the album name
ALGORITHM - Static variable in class uk.org.retep.util.io.lzma.LzmaOutputStream
The default algorithm used as defined by the LZMA SDK
allocateTarHeader() - Method in class uk.org.retep.util.io.tar.TarHeader
Allocate a ByteBuffer capable of containing this header
assertFileInsideDirectory(File, File) - Static method in class uk.org.retep.util.io.FileUtils
Checks that the file is in the baseDirectory, or a subdirectory of it.

B

BandwidthProgressListener - Class in uk.org.retep.util.monitor
A ProgressListener implementation that
BandwidthProgressListener() - Constructor for class uk.org.retep.util.monitor.BandwidthProgressListener
 
BandwidthProgressListener.MonitoredInputStream - Class in uk.org.retep.util.monitor
 
BandwidthProgressListener.MonitoredInputStream(InputStream, ProgressListener) - Constructor for class uk.org.retep.util.monitor.BandwidthProgressListener.MonitoredInputStream
 
BandwidthProgressListener.MonitoredOutputStream - Class in uk.org.retep.util.monitor
 
BandwidthProgressListener.MonitoredOutputStream(OutputStream, ProgressListener) - Constructor for class uk.org.retep.util.monitor.BandwidthProgressListener.MonitoredOutputStream
 
Base64 - Class in uk.org.retep.util.io
Encodes and decodes to and from Base64 notation.
Base64.InputStream - Class in uk.org.retep.util.io
A Base64.InputStream will read data from another java.io.InputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
Base64.InputStream(InputStream) - Constructor for class uk.org.retep.util.io.Base64.InputStream
Constructs a Base64.InputStream in DECODE mode.
Base64.InputStream(InputStream, int) - Constructor for class uk.org.retep.util.io.Base64.InputStream
Constructs a Base64.InputStream in either ENCODE or DECODE mode.
Base64.OutputStream - Class in uk.org.retep.util.io
A Base64.OutputStream will write data to another java.io.OutputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
Base64.OutputStream(OutputStream) - Constructor for class uk.org.retep.util.io.Base64.OutputStream
Constructs a Base64.OutputStream in ENCODE mode.
Base64.OutputStream(OutputStream, int) - Constructor for class uk.org.retep.util.io.Base64.OutputStream
Constructs a Base64.OutputStream in either ENCODE or DECODE mode.
BIO - Static variable in class uk.org.retep.util.io.MP3
This is unique to MusicMatch.
BitUtils - Class in uk.org.retep.util.io
A set of methods to convert between byte[] and primitive types.
BLOCK_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
The size of a TarHeader block
BufferedCharReader - Class in uk.org.retep.util.io
A BufferedCharReader is a reader which ensures that a certain number of characters are in an array, filling the array as required from a Reader.
BufferedCharReader(Reader) - Constructor for class uk.org.retep.util.io.BufferedCharReader
 
BufferedCharReader(Reader, int) - Constructor for class uk.org.retep.util.io.BufferedCharReader
 
BZip2InputStream - Class in uk.org.retep.util.io.bzip2
An input stream that decompresses from the BZip2 format (without the file header chars) to be read as any other stream.
BZip2InputStream(InputStream) - Constructor for class uk.org.retep.util.io.bzip2.BZip2InputStream
 
BZip2OutputStream - Class in uk.org.retep.util.io.bzip2
An output stream that compresses into the BZip2 format (without the file header chars) into another stream.
BZip2OutputStream(OutputStream) - Constructor for class uk.org.retep.util.io.bzip2.BZip2OutputStream
 
BZip2OutputStream(OutputStream, int) - Constructor for class uk.org.retep.util.io.bzip2.BZip2OutputStream
 

C

chain() - Method in class uk.org.retep.util.io.tar.TarHeader
 
checksum(ByteBuffer, int, int, int) - Method in class uk.org.retep.util.io.tar.TarHeader
Add the checksum
chksum - Variable in class uk.org.retep.util.io.tar.TarHeader
 
CHKSUM_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 
CLEARMASK - Static variable in class uk.org.retep.util.io.bzip2.BZip2OutputStream
 
close() - Method in class uk.org.retep.util.io.Base64.OutputStream
Flushes and closes (I think, in the superclass) the stream.
close() - Method in class uk.org.retep.util.io.bzip2.BZip2OutputStream
 
close() - Method in class uk.org.retep.util.io.lzma.LzmaInputStream
 
close() - Method in class uk.org.retep.util.io.lzma.LzmaOutputStream
 
close() - Method in class uk.org.retep.util.io.NullOutputStream
 
close() - Method in class uk.org.retep.util.io.NullWriter
 
close() - Method in class uk.org.retep.util.io.ReaderInputStream
 
close() - Method in class uk.org.retep.util.io.RedirectableOutputStream
 
close() - Method in class uk.org.retep.util.io.tar.TarOutputStream
close() - Method in class uk.org.retep.util.io.tar.WritableTarChannel
 
closeEntry() - Method in class uk.org.retep.util.io.tar.TarOutputStream
Close the current entry
closeEntry() - Method in interface uk.org.retep.util.io.tar.WritableTar
Close the current entry
closeEntry() - Method in class uk.org.retep.util.io.tar.WritableTarChannel
 
cls - Variable in class uk.org.retep.util.io.DocBook
 
code(InputStream, OutputStream, long) - Method in class uk.org.retep.util.io.lzma.Decoder
 
code(InputStream, OutputStream, long, long, ProgressListener) - Method in class uk.org.retep.util.io.lzma.Encoder
 
codeOneBlock(long[], long[], boolean[]) - Method in class uk.org.retep.util.io.lzma.Encoder
 
COLUMN_NAMES - Static variable in class uk.org.retep.util.monitor.BandwidthProgressListener
String containing the column names
compareTo(ComplexFile) - Method in class uk.org.retep.util.io.SimpleComplexFile
 
ComplexFile - Interface in uk.org.retep.util.io
A visitor that can be called by FileUtils.visit()
ComplexFileVisitor<F extends ComplexFile> - Interface in uk.org.retep.util.io
A visitor that can be called by FileUtils.visit()
constructors - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
convertPackage(String) - Static method in class uk.org.retep.util.io.PatternFileFilter
Convert all File.separator characters into a valid Regex string
copy(char[], int) - Method in class uk.org.retep.util.io.BufferedCharReader
Copy from the buffer into a char array
copy(FileChannel, FileChannel) - Static method in class uk.org.retep.util.io.FileUtils
Copy the content of one FileChannel to another
copy(InputStream, OutputStream) - Static method in class uk.org.retep.util.io.FileUtils
Copy from a source InputStream and write to an OutputStream
copy(Reader, Writer) - Static method in class uk.org.retep.util.io.FileUtils
Copy from a source InputStream and write to an OutputStream
copyFile(File, File) - Static method in class uk.org.retep.util.io.FileUtils
Copy from one File and write to another
copyFile(File, OutputStream) - Static method in class uk.org.retep.util.io.FileUtils
Copy from a File and write to an OutputStream
copyFile(InputStream, File) - Static method in class uk.org.retep.util.io.FileUtils
Copy from a source InputStream and write to a File
copyFile(File) - Method in class uk.org.retep.util.io.tar.TarCreateFileVisitor
Copy the File contents into the archive.
CRC16 - Class in uk.org.retep.util.io
A simple 16bit cyclic redundancy check for a set of bytes
CRC16() - Constructor for class uk.org.retep.util.io.CRC16
 
createDirectory(String) - Static method in class uk.org.retep.util.io.tar.TarFactory
Create a TarHeader.NamedHeader representing a directory
createDirectory(String, long) - Static method in class uk.org.retep.util.io.tar.TarFactory
Create a TarHeader.NamedHeader representing a directory
createDirectory(File) - Static method in class uk.org.retep.util.io.tar.TarFactory
Create a TarHeader.NamedHeader representing a directory
createFile(String) - Static method in class uk.org.retep.util.io.tar.TarFactory
Create a TarHeader.FileHeader for a file
createFile(File) - Static method in class uk.org.retep.util.io.tar.TarFactory
Create a TarHeader.FileHeader for a file
createFile(File, String) - Static method in class uk.org.retep.util.io.tar.TarFactory
Create a TarHeader.FileHeader for a file
createHeader(File) - Static method in class uk.org.retep.util.io.tar.TarFactory
Create a TarHeader based on the given File.
createHeader(File, String) - Static method in class uk.org.retep.util.io.tar.TarFactory
Create a TarHeader based on the given File.
createTar(File, List<File>) - Static method in class uk.org.retep.util.io.tar.TarUtils
Create a tar file based on a list of files.
createTar(File, File, FileFilter, boolean) - Static method in class uk.org.retep.util.io.tar.TarUtils
Create a tar file based on a list of files.
createTar(File, File, List<File>) - Static method in class uk.org.retep.util.io.tar.TarUtils
Create a tar file based on a list of files.
createTar(Log, File, List<File>) - Static method in class uk.org.retep.util.io.tar.TarUtils
Create a tar file based on a list of files.
createTar(Log, File, File, FileFilter, boolean) - Static method in class uk.org.retep.util.io.tar.TarUtils
Create a tar file based on a list of files.
createTar(Log, File, File, List<File>) - Static method in class uk.org.retep.util.io.tar.TarUtils
Create a tar file based on a list of files.
createVisitor(TarOutputStream) - Static method in class uk.org.retep.util.io.tar.TarCreateFileVisitor
Returns a TarCreateFileVisitor that will write entries to a TarOutputStream
createVisitor(Log, TarOutputStream) - Static method in class uk.org.retep.util.io.tar.TarCreateFileVisitor
Returns a TarCreateFileVisitor that will write entries to a TarOutputStream
createVisitor(Log, String, TarOutputStream) - Static method in class uk.org.retep.util.io.tar.TarCreateFileVisitor
Returns a TarCreateFileVisitor that will write entries to a TarOutputStream
createVisitor(WritableTarChannel) - Static method in class uk.org.retep.util.io.tar.TarCreateFileVisitor
Returns a TarCreateFileVisitor that will write entries to a WritableTarChannel
createVisitor(Log, WritableTarChannel) - Static method in class uk.org.retep.util.io.tar.TarCreateFileVisitor
Returns a TarCreateFileVisitor that will write entries to a WritableTarChannel
createVisitor(Log, String, WritableTarChannel) - Static method in class uk.org.retep.util.io.tar.TarCreateFileVisitor
Returns a TarCreateFileVisitor that will write entries to a WritableTarChannel
createVolumeHeader(String) - Static method in class uk.org.retep.util.io.tar.TarFactory
Create a volume header (i.e.
createZip(File, List<File>) - Static method in class uk.org.retep.util.io.zip.ZipUtils
 
createZip(File, File, FileFilter, boolean) - Static method in class uk.org.retep.util.io.zip.ZipUtils
 
createZip(File, File, List<File>) - Static method in class uk.org.retep.util.io.zip.ZipUtils
 
createZip(Log, File, List<File>) - Static method in class uk.org.retep.util.io.zip.ZipUtils
 
createZip(Log, File, File, FileFilter, boolean) - Static method in class uk.org.retep.util.io.zip.ZipUtils
 
createZip(Log, File, File, List<File>) - Static method in class uk.org.retep.util.io.zip.ZipUtils
 
CryptoUtils - Class in uk.org.retep.util.io
 

D

debug - Variable in class uk.org.retep.util.io.DocBook
 
DECODE - Static variable in class uk.org.retep.util.io.Base64
Specify decoding.
decode(byte[], int, int) - Static method in class uk.org.retep.util.io.Base64
Very low-level access to decoding ASCII characters in the form of a byte array.
decode(String) - Static method in class uk.org.retep.util.io.Base64
Decodes data from Base64 notation, automatically detecting gzip-compressed data and decompressing it.
decodeFromFile(String) - Static method in class uk.org.retep.util.io.Base64
Convenience method for reading a base64-encoded file and decoding it.
Decoder - Class in uk.org.retep.util.io.lzma
Part of the LZMA SDK 4.63 written and placed in the public domain by Igor Pavlov.
Decoder() - Constructor for class uk.org.retep.util.io.lzma.Decoder
 
decodeToFile(String, String) - Static method in class uk.org.retep.util.io.Base64
Convenience method for decoding data to a file.
decodeToObject(String) - Static method in class uk.org.retep.util.io.Base64
Attempts to decode Base64 data and deserialize a Java Object within.
delete(File) - Static method in class uk.org.retep.util.io.FileUtils
Delete a File.
delete(File, Log) - Static method in class uk.org.retep.util.io.FileUtils
Delete a File.
DEPTH_THRESH - Static variable in class uk.org.retep.util.io.bzip2.BZip2OutputStream
 
destinationFile - Variable in class uk.org.retep.util.io.SimpleComplexFile
 
devmajor - Variable in class uk.org.retep.util.io.tar.TarHeader
 
DEVMAJOR_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 
devminor - Variable in class uk.org.retep.util.io.tar.TarHeader
 
DEVMINOR_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 
DICTIONARY_SIZE - Static variable in class uk.org.retep.util.io.lzma.LzmaOutputStream
The default dictionary size as defined by the LZMA SDK
DIRECTORY_FILTER - Static variable in class uk.org.retep.util.io.FileUtils
A FileFilter that will accept Directories that can be read
DocBook - Class in uk.org.retep.util.io
 
DocBook() - Constructor for class uk.org.retep.util.io.DocBook
Creates a new instance of DocBook
DocBook.ClassInfo - Class in uk.org.retep.util.io
 
DocBook.ClassInfo(String, String, int) - Constructor for class uk.org.retep.util.io.DocBook.ClassInfo
 
domap(StringBuffer, Map, String) - Method in class uk.org.retep.util.io.DocBook.ClassInfo
 
DONT_BREAK_LINES - Static variable in class uk.org.retep.util.io.Base64
Don't break lines when encoding (violates strict Base64 specification)
DOT - Static variable in class uk.org.retep.util.io.PatternFileFilter
 
DOT_REGEX - Static variable in class uk.org.retep.util.io.PatternFileFilter
 

E

EMatchFinderTypeBT2 - Static variable in class uk.org.retep.util.io.lzma.Encoder
 
EMatchFinderTypeBT4 - Static variable in class uk.org.retep.util.io.lzma.Encoder
 
ENCODE - Static variable in class uk.org.retep.util.io.Base64
Specify encoding.
encodeBytes(byte[]) - Static method in class uk.org.retep.util.io.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int) - Static method in class uk.org.retep.util.io.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int, int) - Static method in class uk.org.retep.util.io.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int, int, int) - Static method in class uk.org.retep.util.io.Base64
Encodes a byte array into Base64 notation.
encodeFromFile(String) - Static method in class uk.org.retep.util.io.Base64
Convenience method for reading a binary file and base64-encoding it.
encodeObject(Serializable) - Static method in class uk.org.retep.util.io.Base64
Serializes an object and returns the Base64-encoded version of that serialized object.
encodeObject(Serializable, int) - Static method in class uk.org.retep.util.io.Base64
Serializes an object and returns the Base64-encoded version of that serialized object.
Encoder - Class in uk.org.retep.util.io.lzma
Part of the LZMA SDK 4.63 written and placed in the public domain by Igor Pavlov.
Encoder() - Constructor for class uk.org.retep.util.io.lzma.Encoder
 
encodeToFile(byte[], String) - Static method in class uk.org.retep.util.io.Base64
Convenience method for encoding data to a file.
ensureCapacity() - Method in class uk.org.retep.util.io.BufferedCharReader
ensure we have length characters in the buffer.
ensureCapacity(int) - Method in class uk.org.retep.util.io.BufferedCharReader
ensure we have length characters in the buffer.
equals(Object) - Method in class uk.org.retep.util.io.CRC16
 
equals(Object) - Method in class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 
equals(Object) - Method in class uk.org.retep.util.io.SimpleComplexFile
 
error(String, Object...) - Method in class uk.org.retep.util.io.AbstractComplexFileVisitor
 
error(String, Object...) - Method in class uk.org.retep.util.io.AbstractFileVisitor
 
EVERYTHING_FILTER - Static variable in class uk.org.retep.util.io.FileUtils
A FileFilter that will accept everything passed to it.
execute(File) - Method in class uk.org.retep.util.io.AbstractFileVisitor
Subclasses implement this method to perform an action on a File.
execute(File) - Method in class uk.org.retep.util.io.tar.TarCreateFileVisitor
 
execute(File) - Method in class uk.org.retep.util.io.zip.ZipFileVisitor
 
ExternUtils - Class in uk.org.retep.util.io
 

F

fatal(String, Object...) - Method in class uk.org.retep.util.io.AbstractComplexFileVisitor
 
fatal(String, Object...) - Method in class uk.org.retep.util.io.AbstractFileVisitor
 
FB - Static variable in class uk.org.retep.util.io.lzma.LzmaOutputStream
 
fields - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
FILE_FILTER - Static variable in class uk.org.retep.util.io.FileUtils
A FileFilter that will accept plain File's that can be read
FileFilterSet - Class in uk.org.retep.util.io
A Set of FileFilter's that can be passed as a single FileFilter.
FileFilterSet() - Constructor for class uk.org.retep.util.io.FileFilterSet
 
FileFilterSet(Collection<? extends FileFilter>) - Constructor for class uk.org.retep.util.io.FileFilterSet
 
FileFilterSet(FileFilter...) - Constructor for class uk.org.retep.util.io.FileFilterSet
 
FileUtils - Class in uk.org.retep.util.io
Common methods used in our own binary file formats.
FileVisitor - Interface in uk.org.retep.util.io
A visitor that can be called by FileUtils.visit()
fill() - Method in class uk.org.retep.util.io.BufferedCharReader
 
finalize() - Method in class uk.org.retep.util.io.bzip2.BZip2OutputStream
 
findFiles(File, FileFilter, boolean) - Static method in class uk.org.retep.util.io.FileUtils
 
findFiles(List<File>, File, FileFilter, boolean) - Static method in class uk.org.retep.util.io.FileUtils
 
findFiles(FileFilter, List<File>) - Static method in class uk.org.retep.util.io.FileUtils
Scan the list of sources returning all files that match the supplied FileFilter.
flush() - Method in class uk.org.retep.util.io.bzip2.BZip2OutputStream
 
flush() - Method in class uk.org.retep.util.io.lzma.LzmaOutputStream
 
flush() - Method in class uk.org.retep.util.io.NullOutputStream
 
flush() - Method in class uk.org.retep.util.io.NullWriter
 
flush() - Method in class uk.org.retep.util.io.RedirectableOutputStream
 
flushBase64() - Method in class uk.org.retep.util.io.Base64.OutputStream
Method added by PHIL.
FORMAT - Static variable in class uk.org.retep.util.monitor.BandwidthProgressListener
Format used to populate the columns

G

GENRE - Static variable in class uk.org.retep.util.io.MP3
The Genre
get(String) - Method in class uk.org.retep.util.io.MP3
 
get(ByteBuffer) - Method in class uk.org.retep.util.io.tar.TarHeader
 
getAdditionalSize() - Method in class uk.org.retep.util.io.tar.GnuHeader.LongNameFile
 
getAdditionalSize() - Method in class uk.org.retep.util.io.tar.TarHeader
Subclasses must implement this if they override the TarHeader.putAdditional(java.nio.ByteBuffer) method.
getAvailable() - Method in class uk.org.retep.util.io.BufferedCharReader
 
getBlockSize(int) - Static method in class uk.org.retep.util.io.tar.TarHeader
Returns the size padded out to fit a block
getBoolean(byte[], int) - Static method in class uk.org.retep.util.io.BitUtils
Return a boolean value
getBuffer() - Method in class uk.org.retep.util.io.BufferedCharReader
 
getChar(byte[], int) - Static method in class uk.org.retep.util.io.BitUtils
Return a char value, encoded with 2 bytes
getComplexCopyFileVisitor(File) - Static method in class uk.org.retep.util.io.FileUtils
Create a FileVisitor what will copy the visited file to the destination directory.
getComplexCopyFileVisitor(File, boolean) - Static method in class uk.org.retep.util.io.FileUtils
Create a FileVisitor what will copy the visited file to the destination directory.
getComplexCopyFileVisitor(Log, File) - Static method in class uk.org.retep.util.io.FileUtils
Create a FileVisitor what will copy the visited file to the destination directory.
getComplexCopyFileVisitor(Log, String, File) - Static method in class uk.org.retep.util.io.FileUtils
Create a FileVisitor what will copy the visited file to the destination directory.
getComplexCopyFileVisitor(Log, File, boolean) - Static method in class uk.org.retep.util.io.FileUtils
Create a FileVisitor what will copy the visited file to the destination directory.
getComplexCopyFileVisitor(Log, String, File, boolean) - Static method in class uk.org.retep.util.io.FileUtils
Create a FileVisitor what will copy the visited file to the destination directory.
getComplexSetExecutableVisitor(boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getComplexSetExecutableVisitor(boolean, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getComplexSetExecutableVisitor(Log, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getComplexSetExecutableVisitor(Log, boolean, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getComplexSetReadOnlyVisitor(boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's read permission.
getComplexSetReadOnlyVisitor(boolean, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's read permission.
getComplexSetReadOnlyVisitor(Log, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's read permission.
getComplexSetReadOnlyVisitor(Log, boolean, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getComponent() - Method in class uk.org.retep.util.monitor.JProgressBarListener
 
getContentsFileFilter(File) - Static method in class uk.org.retep.util.io.FileUtils
Returns a FileFilter which will include any file or directory that is contained within the specified directory
getCopyFileVisitor(File) - Static method in class uk.org.retep.util.io.FileUtils
Create a FileVisitor what will copy the visited file to the destination directory.
getCopyFileVisitor(File, boolean) - Static method in class uk.org.retep.util.io.FileUtils
Create a FileVisitor what will copy the visited file to the destination directory.
getCopyFileVisitor(Log, File) - Static method in class uk.org.retep.util.io.FileUtils
Create a FileVisitor what will copy the visited file to the destination directory.
getCopyFileVisitor(Log, String, File) - Static method in class uk.org.retep.util.io.FileUtils
Create a FileVisitor what will copy the visited file to the destination directory.
getCopyFileVisitor(Log, File, boolean) - Static method in class uk.org.retep.util.io.FileUtils
Create a FileVisitor what will copy the visited file to the destination directory.
getCopyFileVisitor(Log, String, File, boolean) - Static method in class uk.org.retep.util.io.FileUtils
Create a FileVisitor what will copy the visited file to the destination directory.
getCurrent() - Method in class uk.org.retep.util.io.BufferedCharReader
The current character
getDestinationFile() - Method in interface uk.org.retep.util.io.ComplexFile
 
getDestinationFile() - Method in class uk.org.retep.util.io.SimpleComplexFile
 
getDestinationFiles() - Method in class uk.org.retep.util.io.ResourceInstaller
 
getDevmajor() - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
getDevminor() - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
getDouble(byte[], int) - Static method in class uk.org.retep.util.io.BitUtils
Return a double value
getDuration() - Method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
getDurationSeconds() - Method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
getEnd() - Method in class uk.org.retep.util.io.BufferedCharReader
 
getEnumByOrdinal(int, Class<? extends Enum<T>>) - Static method in class uk.org.retep.util.io.ExternUtils
 
getExtensionFileFilter(String) - Static method in class uk.org.retep.util.io.FileUtils
Returns a FileFilter which will accept all files whos names end with a specific extension
getFile() - Method in class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 
getFloat(byte[], int) - Static method in class uk.org.retep.util.io.BitUtils
Return a float value
getGid() - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
getGname() - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
getInputKBs() - Method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
getInputSize() - Method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
getInt(byte[], int) - Static method in class uk.org.retep.util.io.BitUtils
Return a integer value
getInt3(byte[], int) - Static method in class uk.org.retep.util.io.BitUtils
Return a integer value encoded with just 3 bytes instead of 4.
getKBs(long, long) - Static method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
getLatest(Collection<JarVersionFileOptimiser.OSGIVersion>) - Static method in class uk.org.retep.util.io.JarVersionFileOptimiser
 
getLatest() - Method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
getLimit() - Method in class uk.org.retep.util.io.BufferedCharReader
 
getListeners() - Method in class uk.org.retep.util.monitor.ProgressListenerSet
Returns a snapshot of the ProgressListener's currently in the set
getLong(byte[], int) - Static method in class uk.org.retep.util.io.BitUtils
Return a long value
getMajor() - Method in class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 
getMatcher(Pattern, CharSequence) - Method in class uk.org.retep.util.io.PatternFileFilter
Get a Matcher for the supplied Pattern.
getMessage() - Method in class uk.org.retep.util.io.AbstractComplexFileVisitor
 
getMessage() - Method in class uk.org.retep.util.io.ResourceInstaller
 
getMicro() - Method in class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 
getMinor() - Method in class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 
getMode() - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
getMtime() - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
The modification time in milliseconds (not seconds as defined by the tar specification)
getName() - Method in class uk.org.retep.util.io.tar.TarHeader.NamedHeader
 
getOutdated(Collection<JarVersionFileOptimiser.OSGIVersion>) - Static method in class uk.org.retep.util.io.JarVersionFileOptimiser
 
getOutputDirectory() - Method in class uk.org.retep.util.io.DocBook
 
getOutputKBs() - Method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
getOutputSize() - Method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
getPosition() - Method in class uk.org.retep.util.io.BufferedCharReader
 
getPrevHeader() - Method in class uk.org.retep.util.io.tar.TarHeader
 
getProperties() - Method in class uk.org.retep.util.io.ResourceInstaller
 
getQualifier() - Method in class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 
getSecondaryComponent() - Method in class uk.org.retep.util.monitor.JProgressBarListener
 
getSetExecutableVisitor(boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getSetExecutableVisitor(boolean, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getSetExecutableVisitor(Log, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getSetExecutableVisitor(Log, boolean, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getSetReadOnlyVisitor(boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's read permission.
getSetReadOnlyVisitor(boolean, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's read permission.
getSetReadOnlyVisitor(Log, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's read permission.
getSetReadOnlyVisitor(Log, boolean, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getSetWritableVisitor(boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getSetWritableVisitor(boolean, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getSetWritableVisitor(Log, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getSetWritableVisitor(Log, boolean, boolean) - Static method in class uk.org.retep.util.io.FileUtils
A convenience method to get a FileVisitor to set the owner's execute permission.
getShort(byte[], int) - Static method in class uk.org.retep.util.io.BitUtils
Return a short value
getSimpleName() - Method in class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 
getSize() - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
getSourceDirectory() - Method in class uk.org.retep.util.io.DocBook
 
getSourceFile() - Method in interface uk.org.retep.util.io.ComplexFile
 
getSourceFile() - Method in class uk.org.retep.util.io.SimpleComplexFile
 
getStart() - Method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
getSuccHeader() - Method in class uk.org.retep.util.io.tar.TarHeader
 
getSuffix() - Method in class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 
getTags() - Method in class uk.org.retep.util.io.MP3
Obtains an Iterator of tag names in the MP3 file.
getTarHeaderSize() - Method in class uk.org.retep.util.io.tar.StandardHeader.EndOfArchive
This block is 2 header blocks in size
getTarHeaderSize() - Method in class uk.org.retep.util.io.tar.TarHeader
The size this TarHeader requires.
getTarHeaderType() - Method in class uk.org.retep.util.io.tar.GnuHeader.DumpDir
 
getTarHeaderType() - Method in class uk.org.retep.util.io.tar.GnuHeader.LongNameFile
 
getTarHeaderType() - Method in class uk.org.retep.util.io.tar.GnuHeader.MultiVolume
 
getTarHeaderType() - Method in class uk.org.retep.util.io.tar.GnuHeader.SparseFile
 
getTarHeaderType() - Method in class uk.org.retep.util.io.tar.GnuHeader.VolumeHeader
 
getTarHeaderType() - Method in class uk.org.retep.util.io.tar.StandardHeader.ARegularFile
 
getTarHeaderType() - Method in class uk.org.retep.util.io.tar.StandardHeader.Directory
 
getTarHeaderType() - Method in class uk.org.retep.util.io.tar.StandardHeader.EndOfArchive
 
getTarHeaderType() - Method in class uk.org.retep.util.io.tar.StandardHeader.RegularFile
 
getTarHeaderType() - Method in class uk.org.retep.util.io.tar.TarHeader
The TarHeaderType of this instance
getType() - Method in enum uk.org.retep.util.io.tar.TarFormat
 
getType() - Method in enum uk.org.retep.util.io.tar.TarHeaderType
 
getUid() - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
getUname() - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
getUUID(byte[], int) - Static method in class uk.org.retep.util.io.BitUtils
Return a UUID value.
getValue() - Method in class uk.org.retep.util.io.CRC16
 
gid - Variable in class uk.org.retep.util.io.tar.TarHeader
 
GID_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 
gname - Variable in class uk.org.retep.util.io.tar.TarHeader
 
GNAME_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 
GnuHeader - Class in uk.org.retep.util.io.tar
A TarHeader for a standard file
GnuHeader() - Constructor for class uk.org.retep.util.io.tar.GnuHeader
 
GnuHeader.DumpDir - Class in uk.org.retep.util.io.tar
This represents a directory and a list of files created by the '--incremental' ('-G') option to gnu tar.
GnuHeader.DumpDir() - Constructor for class uk.org.retep.util.io.tar.GnuHeader.DumpDir
 
GnuHeader.LongNameFile - Class in uk.org.retep.util.io.tar
A Regular file who's name is longer than supported by the Posix standard
GnuHeader.LongNameFile(String) - Constructor for class uk.org.retep.util.io.tar.GnuHeader.LongNameFile
 
GnuHeader.MultiVolume - Class in uk.org.retep.util.io.tar
This represents a file continued from another volume of a multi-volume archive created with the '--multi-volume' ('-M') option to gnu tar.
GnuHeader.MultiVolume() - Constructor for class uk.org.retep.util.io.tar.GnuHeader.MultiVolume
 
GnuHeader.SparseFile - Class in uk.org.retep.util.io.tar
This flag indicates that we are dealing with a sparse file.
GnuHeader.SparseFile() - Constructor for class uk.org.retep.util.io.tar.GnuHeader.SparseFile
 
GnuHeader.VolumeHeader - Class in uk.org.retep.util.io.tar
This file type is used to mark the volume header that was given with the '--label=archive-label' ('-V archive-label') option in gnu tar when the archive was created.
GnuHeader.VolumeHeader(String) - Constructor for class uk.org.retep.util.io.tar.GnuHeader.VolumeHeader
 
GREATER_ICOST - Static variable in class uk.org.retep.util.io.bzip2.BZip2OutputStream
 
GZIP - Static variable in class uk.org.retep.util.io.Base64
Specify that data should be gzip-compressed.

H

hashCode() - Method in class uk.org.retep.util.io.CRC16
 
hashCode() - Method in class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 
hashCode() - Method in class uk.org.retep.util.io.SimpleComplexFile
 
hbMakeCodeLengths(char[], int[], int, int) - Static method in class uk.org.retep.util.io.bzip2.BZip2OutputStream
 
HEADER_OFFSET - Static variable in enum uk.org.retep.util.io.tar.TarFormat
The offset in the TarHeader of this field

I

info(String, Object...) - Method in class uk.org.retep.util.io.AbstractComplexFileVisitor
 
info(String, Object...) - Method in class uk.org.retep.util.io.AbstractFileVisitor
 
inScope(File) - Method in class uk.org.retep.util.io.PatternFileFilter
Is the file in a subdirectory of the base directory.
install(Class<?>, File, String) - Static method in class uk.org.retep.util.io.ResourceInstaller
 
install(Class<?>, File, String, Map<?, ?>) - Static method in class uk.org.retep.util.io.ResourceInstaller
 
install(Class<?>, File, String, Log) - Static method in class uk.org.retep.util.io.ResourceInstaller
 
install(Class<?>, File, String, Map<?, ?>, Log) - Static method in class uk.org.retep.util.io.ResourceInstaller
 
install() - Method in class uk.org.retep.util.io.ResourceInstaller
 
isEmpty() - Method in class uk.org.retep.util.monitor.ProgressListenerSet
Is the set empty.
isEof() - Method in class uk.org.retep.util.io.BufferedCharReader
 
isNewer(JarVersionFileOptimiser.OSGIVersion) - Method in class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 
isOpen() - Method in class uk.org.retep.util.io.tar.WritableTarChannel
 
isOverwrite() - Method in class uk.org.retep.util.io.ResourceInstaller
 
isSameFile(JarVersionFileOptimiser.OSGIVersion) - Method in class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 

J

JAR_FILTER - Static variable in class uk.org.retep.util.io.FileUtils
A FileFilter that will accept plain File's that can be read and who's name ends with .jar
JarVersionFileOptimiser - Class in uk.org.retep.util.io
A class that takes file version numbers (as used by Maven), and can provide a list of file's that require removal (due to newer versions being present)
JarVersionFileOptimiser.OSGIVersion - Class in uk.org.retep.util.io
 
JarVersionFileOptimiser.OSGIVersion(File) - Constructor for class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 
JAVA_FILTER - Static variable in class uk.org.retep.util.io.FileUtils
A FileFilter that will accept plain File's that can be read and who's name ends with .java
javaDoc - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
JProgressBarListener - Class in uk.org.retep.util.monitor
A ProgressListener that can update progress on one or two JProgressBar component(s), depending on the action being monitored.
JProgressBarListener(JProgressBar) - Constructor for class uk.org.retep.util.monitor.JProgressBarListener
Construct a ProgressListener with a single JProgressBar to update.
JProgressBarListener(JProgressBar, JProgressBar) - Constructor for class uk.org.retep.util.monitor.JProgressBarListener
Construct a ProgressListener with two JProgressBar's to update.

L

LC - Static variable in class uk.org.retep.util.io.lzma.LzmaOutputStream
 
LENGTH - Static variable in class uk.org.retep.util.io.MP3
The track length in bytes
LESSER_ICOST - Static variable in class uk.org.retep.util.io.bzip2.BZip2OutputStream
 
linkname - Variable in class uk.org.retep.util.io.tar.TarHeader
 
LINKNAME_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 
loadLine(String, Map<String, String>) - Static method in class uk.org.retep.util.collections.MapUtils
 
loadMap(Map<String, String>, URL) - Static method in class uk.org.retep.util.collections.MapUtils
Loads a Map from a URL
loadMap(Map<String, String>, InputStream) - Static method in class uk.org.retep.util.collections.MapUtils
Loads a Map from a URL
loadMap(Map<String, String>, Reader) - Static method in class uk.org.retep.util.collections.MapUtils
Loads a Map from a URL
loadMap(InputStream, Map<String, String>) - Static method in class uk.org.retep.util.collections.MapUtils
 
loadMap(InputStream) - Static method in class uk.org.retep.util.collections.MapUtils
 
loadMap(Reader, Map<String, String>) - Static method in class uk.org.retep.util.collections.MapUtils
 
loadMap(Reader) - Static method in class uk.org.retep.util.collections.MapUtils
 
loadMap(File, Map<String, String>) - Static method in class uk.org.retep.util.collections.MapUtils
 
loadMap(File) - Static method in class uk.org.retep.util.collections.MapUtils
 
loadMap(BufferedCharReader, Map<String, String>) - Static method in class uk.org.retep.util.collections.MapUtils
 
loadMap(BufferedCharReader) - Static method in class uk.org.retep.util.collections.MapUtils
 
loadMap(List<String>) - Static method in class uk.org.retep.util.collections.MapUtils
 
loadMap(List<String>, Map<String, String>) - Static method in class uk.org.retep.util.collections.MapUtils
 
LogicFileFilter - Class in uk.org.retep.util.io
base class for logical file filters
LogicFileFilter() - Constructor for class uk.org.retep.util.io.LogicFileFilter
 
LogicFileFilter(FileFilter...) - Constructor for class uk.org.retep.util.io.LogicFileFilter
 
LogicFileFilter(Collection<? extends FileFilter>) - Constructor for class uk.org.retep.util.io.LogicFileFilter
 
LogicFileFilter.And - Class in uk.org.retep.util.io
A FileFilter where all of the FileFilters in the collection must match.
LogicFileFilter.And() - Constructor for class uk.org.retep.util.io.LogicFileFilter.And
 
LogicFileFilter.And(FileFilter...) - Constructor for class uk.org.retep.util.io.LogicFileFilter.And
 
LogicFileFilter.And(Collection<? extends FileFilter>) - Constructor for class uk.org.retep.util.io.LogicFileFilter.And
 
LogicFileFilter.Not - Class in uk.org.retep.util.io
For completeness, negates the result of another filter
LogicFileFilter.Not(FileFilter) - Constructor for class uk.org.retep.util.io.LogicFileFilter.Not
 
LogicFileFilter.Or - Class in uk.org.retep.util.io
A FileFilter where one of the FileFilters in the collection must match.
LogicFileFilter.Or() - Constructor for class uk.org.retep.util.io.LogicFileFilter.Or
 
LogicFileFilter.Or(FileFilter...) - Constructor for class uk.org.retep.util.io.LogicFileFilter.Or
 
LogicFileFilter.Or(Collection<? extends FileFilter>) - Constructor for class uk.org.retep.util.io.LogicFileFilter.Or
 
LP - Static variable in class uk.org.retep.util.io.lzma.LzmaOutputStream
 
LYRICS - Static variable in class uk.org.retep.util.io.MP3
The Lyrics for this track
LzmaFileVisitor - Class in uk.org.retep.util.io.lzma
 
LzmaFileVisitor() - Constructor for class uk.org.retep.util.io.lzma.LzmaFileVisitor
 
LzmaInputStream - Class in uk.org.retep.util.io.lzma
An InputStream that decompresses from the LZMA format
LzmaInputStream(InputStream) - Constructor for class uk.org.retep.util.io.lzma.LzmaInputStream
 
LzmaInputStream(InputStream, ProgressListener) - Constructor for class uk.org.retep.util.io.lzma.LzmaInputStream
 
LzmaOutputStream - Class in uk.org.retep.util.io.lzma
An OutputStream that compresses with the LZMA format
LzmaOutputStream(OutputStream) - Constructor for class uk.org.retep.util.io.lzma.LzmaOutputStream
 
LzmaOutputStream(OutputStream, ProgressListener) - Constructor for class uk.org.retep.util.io.lzma.LzmaOutputStream
 
LzmaOutputStream(OutputStream, long) - Constructor for class uk.org.retep.util.io.lzma.LzmaOutputStream
 
LzmaOutputStream(OutputStream, ProgressListener, long) - Constructor for class uk.org.retep.util.io.lzma.LzmaOutputStream
 
LzmaOutputStream(OutputStream, ProgressListener, long, int, int, int, int, int, int, int) - Constructor for class uk.org.retep.util.io.lzma.LzmaOutputStream
 

M

main(String[]) - Static method in class uk.org.retep.util.io.DocBook
 
main(String[]) - Static method in class uk.org.retep.util.io.MP3
A simple example application.
makeFileRelative(File, File) - Static method in class uk.org.retep.util.io.FileUtils
Ensure that a File is relative from a base directory
MapUtils - Class in uk.org.retep.util.collections
A collection of utility methods for java.util.Map
mark(int) - Method in class uk.org.retep.util.io.ReaderInputStream
 
markSupported() - Method in class uk.org.retep.util.io.ReaderInputStream
 
MATCH_FINDER - Static variable in class uk.org.retep.util.io.lzma.LzmaOutputStream
The default match finder as defined by the LZMA SDK
matches(File) - Method in class uk.org.retep.util.io.PatternFileFilter
Match the file to the registered Patterns.
MED - Static variable in class uk.org.retep.util.io.MP3
Tag name containing the source media
methods - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
mkdir(File, Log) - Static method in class uk.org.retep.util.io.FileUtils
Identical to File.mkdir() but will log if the logger is not null
mkdirs(File, Log) - Static method in class uk.org.retep.util.io.FileUtils
Identical to File.mkdir() but will log if the logger is not null
mode - Variable in class uk.org.retep.util.io.tar.TarHeader
 
MODE_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 
mods - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
MOOD - Static variable in class uk.org.retep.util.io.MP3
This is unique to MusicMatch.
moveForward(int) - Method in class uk.org.retep.util.io.BufferedCharReader
 
MP3 - Class in uk.org.retep.util.io
This class reads in the TAG's contained within an MP3 audio files header.
MP3() - Constructor for class uk.org.retep.util.io.MP3
Empty Constructor.
MP3(File) - Constructor for class uk.org.retep.util.io.MP3
Construct and read data in from a file
MP3(RandomAccessFile) - Constructor for class uk.org.retep.util.io.MP3
Construct and read data in from a file
mtime - Variable in class uk.org.retep.util.io.tar.TarHeader
 
MTIME_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 

N

name - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
name - Variable in class uk.org.retep.util.io.tar.TarHeader
 
NAME_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 
NO_OPTIONS - Static variable in class uk.org.retep.util.io.Base64
No options specified.
NOTES - Static variable in class uk.org.retep.util.io.MP3
This is unique to MusicMatch? Notes
NullOutputStream - Class in uk.org.retep.util.io
A OutputStream that sends all output to the bit bucket
NullOutputStream() - Constructor for class uk.org.retep.util.io.NullOutputStream
 
NullWriter - Class in uk.org.retep.util.io
A Writer that sends all output to the bit bucket
NullWriter() - Constructor for class uk.org.retep.util.io.NullWriter
 

P

PackageFileFilter - Class in uk.org.retep.util.io
A PatternFileFilter that converts string patterns based on package names.
PackageFileFilter.Exclude - Class in uk.org.retep.util.io
An Exclude filter, where all files that do not match, but are under the base directory are included.
PackageFileFilter.Exclude(File, Pattern...) - Constructor for class uk.org.retep.util.io.PackageFileFilter.Exclude
Create a FileFilter with the supplied Patterns.
PackageFileFilter.Exclude(File, String...) - Constructor for class uk.org.retep.util.io.PackageFileFilter.Exclude
Create a FileFilter with the supplied globs.
PackageFileFilter.Exclude(File, Collection<?>) - Constructor for class uk.org.retep.util.io.PackageFileFilter.Exclude
Create a FileFilter with the supplied patterns.
PackageFileFilter.Include - Class in uk.org.retep.util.io
An Include filter, where all files that match are included.
PackageFileFilter.Include(File, Pattern...) - Constructor for class uk.org.retep.util.io.PackageFileFilter.Include
Create a FileFilter with the supplied Patterns.
PackageFileFilter.Include(File, String...) - Constructor for class uk.org.retep.util.io.PackageFileFilter.Include
Create a FileFilter with the supplied globs.
PackageFileFilter.Include(File, Collection<?>) - Constructor for class uk.org.retep.util.io.PackageFileFilter.Include
Create a FileFilter with the supplied patterns.
paranest - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
PatternFileFilter - Class in uk.org.retep.util.io
 
PatternFileFilter(File) - Constructor for class uk.org.retep.util.io.PatternFileFilter
Construct an empty filter
PatternFileFilter(File, Pattern...) - Constructor for class uk.org.retep.util.io.PatternFileFilter
Construct a filter using the supplied patterns
PatternFileFilter(File, String...) - Constructor for class uk.org.retep.util.io.PatternFileFilter
Construct a filter using the supplied patterns
PatternFileFilter(File, Collection<?>) - Constructor for class uk.org.retep.util.io.PatternFileFilter
Construct a filter using the supplied patterns
PatternFileFilter.Exclude - Class in uk.org.retep.util.io
An Exclude filter, where all files that do not match, but are under the base directory are included.
PatternFileFilter.Exclude(File) - Constructor for class uk.org.retep.util.io.PatternFileFilter.Exclude
Create a FileFilter with no Patterns.
PatternFileFilter.Exclude(File, Pattern...) - Constructor for class uk.org.retep.util.io.PatternFileFilter.Exclude
Create a FileFilter with the supplied Patterns.
PatternFileFilter.Exclude(File, String...) - Constructor for class uk.org.retep.util.io.PatternFileFilter.Exclude
Create a FileFilter with the supplied patterns.
PatternFileFilter.Exclude(File, Collection<?>) - Constructor for class uk.org.retep.util.io.PatternFileFilter.Exclude
Create a FileFilter with the supplied patterns.
PatternFileFilter.Include - Class in uk.org.retep.util.io
An Include filter, where all files that match are included.
PatternFileFilter.Include(File) - Constructor for class uk.org.retep.util.io.PatternFileFilter.Include
Create a FileFilter with no Patterns.
PatternFileFilter.Include(File, Pattern...) - Constructor for class uk.org.retep.util.io.PatternFileFilter.Include
Create a FileFilter with the supplied Patterns.
PatternFileFilter.Include(File, String...) - Constructor for class uk.org.retep.util.io.PatternFileFilter.Include
Create a FileFilter with the supplied patterns.
PatternFileFilter.Include(File, Collection<?>) - Constructor for class uk.org.retep.util.io.PatternFileFilter.Include
Create a FileFilter with the supplied patterns.
PB - Static variable in class uk.org.retep.util.io.lzma.LzmaOutputStream
 
pkg - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
postCopy(String, InputStream, OutputStream, File) - Method in interface uk.org.retep.util.io.ResourceInstaller.Hook
 
preCopy(String, InputStream, OutputStream, File) - Method in interface uk.org.retep.util.io.ResourceInstaller.Hook
 
prefix - Variable in class uk.org.retep.util.io.tar.TarHeader
 
PREFIX_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 
prevHeader - Variable in class uk.org.retep.util.io.tar.TarHeader
The TarHeader to write prior to this one
process(String) - Method in class uk.org.retep.util.io.DocBook
 
process(File) - Method in class uk.org.retep.util.io.DocBook
 
ProgressListener - Interface in uk.org.retep.util.monitor
 
ProgressListenerAdaptor - Class in uk.org.retep.util.monitor
A base implementstion of ProgressListener that does nothing.
ProgressListenerAdaptor() - Constructor for class uk.org.retep.util.monitor.ProgressListenerAdaptor
 
ProgressListenerSet - Class in uk.org.retep.util.monitor
A set of ProgressListener's that will receive the same events as received by this class.
ProgressListenerSet() - Constructor for class uk.org.retep.util.monitor.ProgressListenerSet
 
ProgressListenerSet(ProgressListener...) - Constructor for class uk.org.retep.util.monitor.ProgressListenerSet
 
protConst - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
protFields - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
protMethods - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
put(ByteBuffer) - Method in class uk.org.retep.util.io.tar.StandardHeader.EndOfArchive
Writes binary zeros into the ByteBuffer Write the header to the ByteBuffer
put(ByteBuffer) - Method in enum uk.org.retep.util.io.tar.TarFormat
 
put(ByteBuffer) - Method in class uk.org.retep.util.io.tar.TarHeader
Write the header to the ByteBuffer
put(ByteBuffer) - Method in enum uk.org.retep.util.io.tar.TarHeaderType
 
putAdditional(ByteBuffer) - Method in class uk.org.retep.util.io.tar.GnuHeader.LongNameFile
 
putAdditional(ByteBuffer) - Method in class uk.org.retep.util.io.tar.TarHeader
Subclasses can use this to write additional data after the header
putNextEntry(TarHeader) - Method in class uk.org.retep.util.io.tar.TarOutputStream
Write the supplied TarHeader to the archive
putNextEntry(TarHeader) - Method in interface uk.org.retep.util.io.tar.WritableTar
Write the supplied TarHeader to the archive
putNextEntry(TarHeader) - Method in class uk.org.retep.util.io.tar.WritableTarChannel
Write the supplied TarHeader to the archive

Q

QSORT_STACK_SIZE - Static variable in class uk.org.retep.util.io.bzip2.BZip2OutputStream
 

R

read() - Method in class uk.org.retep.util.io.Base64.InputStream
Reads enough of the input stream to convert to/from Base64 and returns the next byte.
read(byte[], int, int) - Method in class uk.org.retep.util.io.Base64.InputStream
Calls Base64.InputStream.read() repeatedly until the end of stream is reached or len bytes are read.
read() - Method in class uk.org.retep.util.io.bzip2.BZip2InputStream
 
read(File) - Static method in class uk.org.retep.util.io.FileUtils
 
read(File, StringBuilder) - Static method in class uk.org.retep.util.io.FileUtils
 
read(InputStream) - Static method in class uk.org.retep.util.io.FileUtils
 
read(Reader) - Static method in class uk.org.retep.util.io.FileUtils
 
read(InputStream, StringBuilder) - Static method in class uk.org.retep.util.io.FileUtils
 
read(Reader, StringBuilder) - Static method in class uk.org.retep.util.io.FileUtils
 
read() - Method in class uk.org.retep.util.io.lzma.LzmaInputStream
 
read(byte[]) - Method in class uk.org.retep.util.io.lzma.LzmaInputStream
 
read(byte[], int, int) - Method in class uk.org.retep.util.io.lzma.LzmaInputStream
 
read(File) - Method in class uk.org.retep.util.io.MP3
Read data in from a file
read(RandomAccessFile) - Method in class uk.org.retep.util.io.MP3
Read data in from a file
read() - Method in class uk.org.retep.util.io.ReaderInputStream
 
read(byte[]) - Method in class uk.org.retep.util.io.ReaderInputStream
 
read(byte[], int, int) - Method in class uk.org.retep.util.io.ReaderInputStream
 
read() - Method in class uk.org.retep.util.monitor.BandwidthProgressListener.MonitoredInputStream
 
readBooleanArray(ObjectInput) - Static method in class uk.org.retep.util.io.ExternUtils
 
readByteArray(ObjectInput) - Static method in class uk.org.retep.util.io.ExternUtils
 
readBytes(File) - Static method in class uk.org.retep.util.io.FileUtils
Read the content of a file into a byte array
readBytes(InputStream) - Static method in class uk.org.retep.util.io.FileUtils
Read the content of an InputStream into a byte array
readDoubleArray(ObjectInput) - Static method in class uk.org.retep.util.io.ExternUtils
 
readDoubleList(ObjectInput, List<Double>) - Static method in class uk.org.retep.util.io.ExternUtils
 
readDoubleSet(ObjectInput, Set<Double>) - Static method in class uk.org.retep.util.io.ExternUtils
 
readEnum(ObjectInput, Class<? extends Enum<T>>) - Static method in class uk.org.retep.util.io.ExternUtils
 
ReaderInputStream - Class in uk.org.retep.util.io
An InputStream that will get it's data from a Reader.
ReaderInputStream(Reader) - Constructor for class uk.org.retep.util.io.ReaderInputStream
 
readExternal(ObjectInput) - Method in class uk.org.retep.util.io.CRC16
 
readExternal(ObjectInput, Class<T>) - Static method in class uk.org.retep.util.io.ExternUtils
 
readIntArray(ObjectInput) - Static method in class uk.org.retep.util.io.ExternUtils
 
readIntList(ObjectInput, List<Integer>) - Static method in class uk.org.retep.util.io.ExternUtils
 
readIntSet(ObjectInput, Set<Integer>) - Static method in class uk.org.retep.util.io.ExternUtils
 
readLines(File) - Static method in class uk.org.retep.util.io.FileUtils
 
readLines(File, List<String>) - Static method in class uk.org.retep.util.io.FileUtils
 
readLines(InputStream) - Static method in class uk.org.retep.util.io.FileUtils
 
readLines(Reader) - Static method in class uk.org.retep.util.io.FileUtils
 
readLines(InputStream, List<String>) - Static method in class uk.org.retep.util.io.FileUtils
 
readLines(Reader, List<String>) - Static method in class uk.org.retep.util.io.FileUtils
 
readLines(BufferedCharReader) - Static method in class uk.org.retep.util.io.FileUtils
 
readLines(BufferedCharReader, List<String>) - Static method in class uk.org.retep.util.io.FileUtils
 
readStringArray(ObjectInput) - Static method in class uk.org.retep.util.io.ExternUtils
 
readStringList(ObjectInput, List<String>) - Static method in class uk.org.retep.util.io.ExternUtils
 
readStringMap(ObjectInput, Map<String, String>) - Static method in class uk.org.retep.util.io.ExternUtils
 
readStringSet(ObjectInput, Set<String>) - Static method in class uk.org.retep.util.io.ExternUtils
 
readUTF(ObjectInput) - Static method in class uk.org.retep.util.io.ExternUtils
Reads a UTF String from ObjectInput that was written by writeUTF().
RedirectableOutputStream - Class in uk.org.retep.util.io
An OutputStream which allows the actual underlying OutputStream to be changed at any time.
RedirectableOutputStream(OutputStream) - Constructor for class uk.org.retep.util.io.RedirectableOutputStream
Creates a new instance of RedirectableOutputStream
remove(ProgressListener, ProgressListener) - Static method in class uk.org.retep.util.monitor.ProgressListenerSet
Utility method that removes a ProgressListener from the current ProgressListener if that instance is a ProgressListenerSet.
remove(ProgressListener) - Method in class uk.org.retep.util.monitor.ProgressListenerSet
Remove a ProgressListener from the set
reset() - Method in class uk.org.retep.util.io.BufferedCharReader
 
reset() - Method in class uk.org.retep.util.io.CRC16
Reset the CRC
reset() - Method in class uk.org.retep.util.io.ReaderInputStream
 
reset() - Method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
ResourceInstaller - Class in uk.org.retep.util.io
A simple file installer which will copy resources from a jar into the local filesystem.
ResourceInstaller(Class<?>, File, String) - Constructor for class uk.org.retep.util.io.ResourceInstaller
 
ResourceInstaller(Class<?>, File, String, Map<?, ?>) - Constructor for class uk.org.retep.util.io.ResourceInstaller
 
ResourceInstaller.Hook - Interface in uk.org.retep.util.io
 
resumeEncoding() - Method in class uk.org.retep.util.io.Base64.OutputStream
Resumes encoding of the stream.

S

scanFiles(FileFilter, String...) - Static method in class uk.org.retep.util.io.FileUtils
Scan the list of sources returning all files that match the supplied FileFilter.
scanFiles(FileFilter, List<String>) - Static method in class uk.org.retep.util.io.FileUtils
Scan the list of sources returning all files that match the supplied FileFilter.
SEPARATOR - Static variable in class uk.org.retep.util.monitor.BandwidthProgressListener
Separator line to place below COLUMN_NAMES
serializeAndCompressToString(Serializable...) - Static method in class uk.org.retep.util.io.CryptoUtils
 
serializeAndEncodeToString(Cipher, Serializable...) - Static method in class uk.org.retep.util.io.CryptoUtils
 
serializeEncodeAndCompressToString(Cipher, Serializable...) - Static method in class uk.org.retep.util.io.CryptoUtils
 
serializeFromBytes(byte[]) - Static method in class uk.org.retep.util.io.CryptoUtils
 
serializeFromString(String) - Static method in class uk.org.retep.util.io.CryptoUtils
 
serializeToBytes(Serializable...) - Static method in class uk.org.retep.util.io.CryptoUtils
 
serializeToString(Serializable...) - Static method in class uk.org.retep.util.io.CryptoUtils
 
setAlgorithm(int) - Method in class uk.org.retep.util.io.lzma.Encoder
 
setBaseDir(String) - Method in class uk.org.retep.util.io.tar.TarCreateFileVisitor
 
setBaseDir(File) - Method in class uk.org.retep.util.io.tar.TarCreateFileVisitor
 
setBaseDir(String) - Method in class uk.org.retep.util.io.zip.ZipFileVisitor
 
setBaseDir(File) - Method in class uk.org.retep.util.io.zip.ZipFileVisitor
 
setBoolean(byte[], int, boolean) - Static method in class uk.org.retep.util.io.BitUtils
Set a boolean value
setChar(byte[], int, char) - Static method in class uk.org.retep.util.io.BitUtils
Set a char value
setDecoderProperties(byte[]) - Method in class uk.org.retep.util.io.lzma.Decoder
 
setDevmajor(int) - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
setDevminor(int) - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
setDictionarySize(int) - Method in class uk.org.retep.util.io.lzma.Encoder
 
setDirPrefix(String) - Method in class uk.org.retep.util.io.tar.TarCreateFileVisitor
 
setDirPrefix(String) - Method in class uk.org.retep.util.io.zip.ZipFileVisitor
 
setDouble(byte[], int, double) - Static method in class uk.org.retep.util.io.BitUtils
Set a double value
setEndMarkerMode(boolean) - Method in class uk.org.retep.util.io.lzma.Encoder
 
setFloat(byte[], int, float) - Static method in class uk.org.retep.util.io.BitUtils
Set a float value
setGid(int) - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
setGname(String) - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
setHook(ResourceInstaller.Hook) - Method in class uk.org.retep.util.io.ResourceInstaller
 
setInt(byte[], int, int) - Static method in class uk.org.retep.util.io.BitUtils
Set a integer value
setInt3(byte[], int, int) - Static method in class uk.org.retep.util.io.BitUtils
Set a integer value using only 3 bytes for storage.
setLcLpPb(int, int, int) - Method in class uk.org.retep.util.io.lzma.Encoder
 
setLog(Log) - Method in class uk.org.retep.util.io.ResourceInstaller
 
setLong(byte[], int, long) - Static method in class uk.org.retep.util.io.BitUtils
Set a long value
SETMASK - Static variable in class uk.org.retep.util.io.bzip2.BZip2OutputStream
 
setMatchFinder(int) - Method in class uk.org.retep.util.io.lzma.Encoder
 
setMaximum(long) - Method in class uk.org.retep.util.monitor.JProgressBarListener
 
setMaximum(long, long) - Method in class uk.org.retep.util.monitor.JProgressBarListener
 
setMaximum(long) - Method in interface uk.org.retep.util.monitor.ProgressListener
Notify the listeners that the maximum value has changed
setMaximum(long, long) - Method in interface uk.org.retep.util.monitor.ProgressListener
Notify the listeners that the maximum value has changed
setMaximum(long) - Method in class uk.org.retep.util.monitor.ProgressListenerAdaptor
 
setMaximum(long, long) - Method in class uk.org.retep.util.monitor.ProgressListenerAdaptor
 
setMaximum(long) - Method in class uk.org.retep.util.monitor.ProgressListenerSet
 
setMaximum(long, long) - Method in class uk.org.retep.util.monitor.ProgressListenerSet
 
setMessage(String) - Method in class uk.org.retep.util.io.ResourceInstaller
 
setMode(int) - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
setMtime(long) - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
The modification time in milliseconds (not seconds as defined by the tar specification)
setNumFastBytes(int) - Method in class uk.org.retep.util.io.lzma.Encoder
 
setOutputDirectory(File) - Method in class uk.org.retep.util.io.DocBook
 
setOutputStream(OutputStream) - Method in class uk.org.retep.util.io.RedirectableOutputStream
 
setOverwrite(boolean) - Method in class uk.org.retep.util.io.ResourceInstaller
 
setPrevHeader(TarHeader) - Method in class uk.org.retep.util.io.tar.TarHeader
 
setShort(byte[], int, short) - Static method in class uk.org.retep.util.io.BitUtils
Set a short value
setSize(long) - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
setSourceDirectory(File) - Method in class uk.org.retep.util.io.DocBook
 
setSuccHeader(TarHeader) - Method in class uk.org.retep.util.io.tar.TarHeader
 
setUid(int) - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
setUname(String) - Method in class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
setUUID(byte[], int, UUID) - Static method in class uk.org.retep.util.io.BitUtils
Set a UUID value occupying 16 bytes from the offset
showProgress(long, long) - Method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
showProgress(int) - Method in class uk.org.retep.util.monitor.JProgressBarListener
 
showProgress(long, long) - Method in class uk.org.retep.util.monitor.JProgressBarListener
 
showProgress(int) - Method in interface uk.org.retep.util.monitor.ProgressListener
Notify listeners of the current progress.
showProgress(long, long) - Method in interface uk.org.retep.util.monitor.ProgressListener
Notify listners of the current progress.
showProgress(int) - Method in class uk.org.retep.util.monitor.ProgressListenerAdaptor
 
showProgress(long, long) - Method in class uk.org.retep.util.monitor.ProgressListenerAdaptor
 
showProgress(int) - Method in class uk.org.retep.util.monitor.ProgressListenerSet
 
showProgress(long, long) - Method in class uk.org.retep.util.monitor.ProgressListenerSet
 
SimpleComplexFile - Class in uk.org.retep.util.io
A simple implementation of ComplexFile
SimpleComplexFile(File) - Constructor for class uk.org.retep.util.io.SimpleComplexFile
 
SimpleComplexFile(File, File) - Constructor for class uk.org.retep.util.io.SimpleComplexFile
 
SITUATION - Static variable in class uk.org.retep.util.io.MP3
This is unique to MusicMatch.
size - Variable in class uk.org.retep.util.io.tar.TarHeader
 
size() - Method in class uk.org.retep.util.monitor.ProgressListenerSet
The number of ProgressListener's in this set.
SIZE_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 
skip(long) - Method in class uk.org.retep.util.io.lzma.LzmaInputStream
 
skip(long) - Method in class uk.org.retep.util.io.ReaderInputStream
 
skip(ByteBuffer) - Static method in enum uk.org.retep.util.io.tar.TarHeaderType
Move the Buffer.position() ahead to skip this value
SMALL_THRESH - Static variable in class uk.org.retep.util.io.bzip2.BZip2OutputStream
 
sourceFile - Variable in class uk.org.retep.util.io.SimpleComplexFile
 
StandardHeader - Class in uk.org.retep.util.io.tar
A TarHeader for a standard file
StandardHeader() - Constructor for class uk.org.retep.util.io.tar.StandardHeader
 
StandardHeader.ARegularFile - Class in uk.org.retep.util.io.tar
A Regular file (using TarHeaderType.AREGULAR_FILE}
StandardHeader.ARegularFile(String) - Constructor for class uk.org.retep.util.io.tar.StandardHeader.ARegularFile
 
StandardHeader.Directory - Class in uk.org.retep.util.io.tar
 
StandardHeader.Directory(String) - Constructor for class uk.org.retep.util.io.tar.StandardHeader.Directory
 
StandardHeader.Directory(String, long) - Constructor for class uk.org.retep.util.io.tar.StandardHeader.Directory
 
StandardHeader.EndOfArchive - Class in uk.org.retep.util.io.tar
Special header used to mark the end of an archive.
StandardHeader.EndOfArchive() - Constructor for class uk.org.retep.util.io.tar.StandardHeader.EndOfArchive
 
StandardHeader.RegularFile - Class in uk.org.retep.util.io.tar
A Regular file who's filename fits the Posix standard.
StandardHeader.RegularFile(String) - Constructor for class uk.org.retep.util.io.tar.StandardHeader.RegularFile
 
staticFields - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
staticMethods - Variable in class uk.org.retep.util.io.DocBook.ClassInfo
 
succHeader - Variable in class uk.org.retep.util.io.tar.TarHeader
The TarHeader to write after this one
suspendEncoding() - Method in class uk.org.retep.util.io.Base64.OutputStream
Suspends encoding of the stream.

T

TarCreateFileVisitor - Class in uk.org.retep.util.io.tar
A FileVisitor that can write to a TarOutputStream
TarCreateFileVisitor(Log, String, WritableTar) - Constructor for class uk.org.retep.util.io.tar.TarCreateFileVisitor
Equivalent to new AbstractFileVisitor( log, "Modified %s" );
TarFactory - Class in uk.org.retep.util.io.tar
Factory for managing Tar archives
TarFormat - Enum in uk.org.retep.util.io.tar
 
TarHeader - Class in uk.org.retep.util.io.tar
Base class for all TarHeader's
TarHeader() - Constructor for class uk.org.retep.util.io.tar.TarHeader
 
TarHeader.FileHeader - Class in uk.org.retep.util.io.tar
Base class for file entries
TarHeader.FileHeader(String) - Constructor for class uk.org.retep.util.io.tar.TarHeader.FileHeader
 
TarHeader.NamedHeader - Class in uk.org.retep.util.io.tar
Base class of all TarHeader's that use the name field.
TarHeader.NamedHeader(String) - Constructor for class uk.org.retep.util.io.tar.TarHeader.NamedHeader
 
TarHeaderType - Enum in uk.org.retep.util.io.tar
The header block type.
TarOutputStream - Class in uk.org.retep.util.io.tar
An OutputStream to write a tar archive.
TarOutputStream(OutputStream) - Constructor for class uk.org.retep.util.io.tar.TarOutputStream
 
TarUtils - Class in uk.org.retep.util.io.tar
A collection of utility methods for handling tar archives
TEMPO - Static variable in class uk.org.retep.util.io.MP3
This is unique to MusicMatch.
TITLE - Static variable in class uk.org.retep.util.io.MP3
The title of this track
toOSGIVersion(Collection<File>) - Static method in class uk.org.retep.util.io.JarVersionFileOptimiser
 
toString() - Method in class uk.org.retep.util.io.DocBook.ClassInfo
 
toString() - Method in class uk.org.retep.util.io.JarVersionFileOptimiser.OSGIVersion
 
toString() - Method in class uk.org.retep.util.io.SimpleComplexFile
 
toString() - Method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
toString(long, long) - Static method in class uk.org.retep.util.monitor.BandwidthProgressListener
 
toStringBuffer(StringBuffer) - Method in class uk.org.retep.util.io.DocBook.ClassInfo
 
toURL(File...) - Static method in class uk.org.retep.util.io.FileUtils
 
toURL(Collection<File>) - Static method in class uk.org.retep.util.io.FileUtils
 
toURLArray(Collection<File>) - Static method in class uk.org.retep.util.io.FileUtils
 
TRACK - Static variable in class uk.org.retep.util.io.MP3
The track number (ie 01-99 for tracks on a cd)
transferFrom(File, WritableByteChannel) - Static method in class uk.org.retep.util.io.FileUtils
Copy the content of a ReadableByteChannel and write to a WritableByteChannel until the source returns EOF.
transferFrom(File, WritableByteChannel, int) - Static method in class uk.org.retep.util.io.FileUtils
Copy the content of a ReadableByteChannel and write to a WritableByteChannel until the source returns EOF.
transferFrom(ReadableByteChannel, WritableByteChannel) - Static method in class uk.org.retep.util.io.FileUtils
Copy the content of a ReadableByteChannel and write to a WritableByteChannel until the source returns EOF.
transferFrom(ReadableByteChannel, WritableByteChannel, int) - Static method in class uk.org.retep.util.io.FileUtils
Copy the content of a ReadableByteChannel and write to a WritableByteChannel until the source returns EOF.

U

uid - Variable in class uk.org.retep.util.io.tar.TarHeader
 
UID_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 
uk.org.retep.util.collections - package uk.org.retep.util.collections
 
uk.org.retep.util.io - package uk.org.retep.util.io
Core IO Library
uk.org.retep.util.io.bzip2 - package uk.org.retep.util.io.bzip2
BZip2 Compression algorithm
uk.org.retep.util.io.lzma - package uk.org.retep.util.io.lzma
LZMA Compression Algorithm
uk.org.retep.util.io.tar - package uk.org.retep.util.io.tar
Unix Tar archive support.
uk.org.retep.util.io.zip - package uk.org.retep.util.io.zip
Zip Archive support
uk.org.retep.util.monitor - package uk.org.retep.util.monitor
Simple Progress Listener API
uname - Variable in class uk.org.retep.util.io.tar.TarHeader
 
UNAME_SIZE - Static variable in class uk.org.retep.util.io.tar.TarHeader
 
URL_ARTIST - Static variable in class uk.org.retep.util.io.MP3
The URL for the artist
URL_AUDIO - Static variable in class uk.org.retep.util.io.MP3
The URL for audio?
URL_BUYCD - Static variable in class uk.org.retep.util.io.MP3
The URL to buy the cd

V

valueOf(String) - Static method in enum uk.org.retep.util.io.tar.TarFormat
Returns the enum constant of this type with the specified name.
valueOf(ByteBuffer) - Static method in enum uk.org.retep.util.io.tar.TarFormat
Read the TarFormat from the ByteBuffer, moving the position to after the value
valueOf(ByteBuffer, int) - Static method in enum uk.org.retep.util.io.tar.TarFormat
Read the TarFormat from the ByteBuffer using the supplied position in that buffer.
valueOf(String) - Static method in enum uk.org.retep.util.io.tar.TarHeaderType
Returns the enum constant of this type with the specified name.
valueOf(ByteBuffer) - Static method in enum uk.org.retep.util.io.tar.TarHeaderType
 
values() - Static method in enum uk.org.retep.util.io.tar.TarFormat
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum uk.org.retep.util.io.tar.TarHeaderType
Returns an array containing the constants of this enum type, in the order they are declared.
verbose - Variable in class uk.org.retep.util.io.DocBook
 
version - Variable in class uk.org.retep.util.io.tar.TarHeader
 
visit(File) - Method in class uk.org.retep.util.io.AbstractFileVisitor
Call execute() on a file.
visit(ComplexFile) - Method in interface uk.org.retep.util.io.ComplexFileVisitor
Visit this File
visit(File) - Method in interface uk.org.retep.util.io.FileVisitor
Visit this File
visitFiles(FileVisitor, Collection<File>) - Static method in class uk.org.retep.util.io.FileUtils
Run a FileVisitor over the supplied files.
visitFiles(FileVisitor, Collection<File>, boolean) - Static method in class uk.org.retep.util.io.FileUtils
Run a FileVisitor over the supplied files.
visitFiles(ComplexFileVisitor, Collection<ComplexFile>) - Static method in class uk.org.retep.util.io.FileUtils
Run a FileVisitor over the supplied files.
visitFiles(ComplexFileVisitor, Collection<ComplexFile>, boolean) - Static method in class uk.org.retep.util.io.FileUtils
Run a FileVisitor over the supplied files.

W

warn(String, Object...) - Method in class uk.org.retep.util.io.AbstractComplexFileVisitor
 
warn(String, Object...) - Method in class uk.org.retep.util.io.AbstractFileVisitor
 
WritableTar - Interface in uk.org.retep.util.io.tar
An object that can be used to write a Tar archive
WritableTarChannel - Class in uk.org.retep.util.io.tar
A Channel for writing a Tar archive.
WritableTarChannel(WritableByteChannel) - Constructor for class uk.org.retep.util.io.tar.WritableTarChannel
 
write(int) - Method in class uk.org.retep.util.io.Base64.OutputStream
Writes the byte to the output stream after converting to/from Base64 notation.
write(byte[], int, int) - Method in class uk.org.retep.util.io.Base64.OutputStream
Calls Base64.OutputStream.write(int) repeatedly until len bytes are written.
write(int) - Method in class uk.org.retep.util.io.bzip2.BZip2OutputStream
modified by Oliver Merkel, 010128
write(int) - Method in class uk.org.retep.util.io.lzma.LzmaOutputStream
 
write(byte[]) - Method in class uk.org.retep.util.io.lzma.LzmaOutputStream
 
write(byte[], int, int) - Method in class uk.org.retep.util.io.lzma.LzmaOutputStream
 
write(int) - Method in class uk.org.retep.util.io.NullOutputStream
 
write(byte[]) - Method in class uk.org.retep.util.io.NullOutputStream
 
write(byte[], int, int) - Method in class uk.org.retep.util.io.NullOutputStream
 
write(char[], int, int) - Method in class uk.org.retep.util.io.NullWriter
 
write(int) - Method in class uk.org.retep.util.io.RedirectableOutputStream
 
write(byte[]) - Method in class uk.org.retep.util.io.RedirectableOutputStream
 
write(byte[], int, int) - Method in class uk.org.retep.util.io.RedirectableOutputStream
 
write(ByteBuffer) - Method in class uk.org.retep.util.io.tar.TarOutputStream
 
write(byte[]) - Method in class uk.org.retep.util.io.tar.TarOutputStream
write(byte[], int, int) - Method in class uk.org.retep.util.io.tar.TarOutputStream
write(int) - Method in class uk.org.retep.util.io.tar.TarOutputStream
write(ByteBuffer) - Method in class uk.org.retep.util.io.tar.WritableTarChannel
 
write(int) - Method in class uk.org.retep.util.monitor.BandwidthProgressListener.MonitoredOutputStream
 
writeArray(ObjectOutput, String[]) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeArray(ObjectOutput, int[]) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeArray(ObjectOutput, double[]) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeArray(ObjectOutput, boolean[]) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeArray(ObjectOutput, byte[]) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeCoderProperties(OutputStream) - Method in class uk.org.retep.util.io.lzma.Encoder
 
writeDoubleList(ObjectOutput, List<Double>) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeDoubleSet(ObjectOutput, Set<Double>) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeEnum(ObjectOutput, Enum<?>) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeExternal(ObjectOutput) - Method in class uk.org.retep.util.io.CRC16
 
writeExternal(ObjectOutput, Externalizable) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeIntegerList(ObjectOutput, List<Integer>) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeIntegerSet(ObjectOutput, Set<Integer>) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeStringList(ObjectOutput, List<String>) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeStringMap(ObjectOutput, Map<String, String>) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeStringSet(ObjectOutput, Set<String>) - Static method in class uk.org.retep.util.io.ExternUtils
 
writeUTF(ObjectOutput, String) - Static method in class uk.org.retep.util.io.ExternUtils
Write a UTF String to the ObjectOutput, accounting for nulls.

Y

YEAR - Static variable in class uk.org.retep.util.io.MP3
Tag name containing the year the track was produced

Z

ZipFileVisitor - Class in uk.org.retep.util.io.zip
 
ZipFileVisitor(ZipOutputStream) - Constructor for class uk.org.retep.util.io.zip.ZipFileVisitor
Create a visitor with no logging
ZipFileVisitor(Log, ZipOutputStream) - Constructor for class uk.org.retep.util.io.zip.ZipFileVisitor
Equivalent to new AbstractFileVisitor( log, "Modified %s" );
ZipFileVisitor(Log, String, ZipOutputStream) - Constructor for class uk.org.retep.util.io.zip.ZipFileVisitor
Construct a visitor with a Log and a message to log whenever an action is performed and returns true.
ZipFileVisitor(ZipOutputStream, File) - Constructor for class uk.org.retep.util.io.zip.ZipFileVisitor
Create a visitor with no logging
ZipFileVisitor(Log, ZipOutputStream, File) - Constructor for class uk.org.retep.util.io.zip.ZipFileVisitor
Equivalent to new AbstractFileVisitor( log, "Modified %s" );
ZipFileVisitor(Log, String, ZipOutputStream, File) - Constructor for class uk.org.retep.util.io.zip.ZipFileVisitor
Construct a visitor with a Log and a message to log whenever an action is performed and returns true.
ZipUtils - Class in uk.org.retep.util.io.zip
 

A B C D E F G H I J L M N P Q R S T U V W Y Z

Copyright © 1998-2010 Retep Development Group. All Rights Reserved.