| BitField |
Manage operations dealing with bit-mapped fields.
|
| BitFieldFactory |
Returns immutable Btfield instances.
|
| BoundedInputStream |
This is a stream that will only supply bytes up to a certain length - if its
position goes above that, it will stop.
|
| ByteField |
representation of a byte (8-bit) field at a fixed location within a
byte array
|
| CloseIgnoringInputStream |
A wrapper around an InputStream, which
ignores close requests made to it.
|
| CodePageUtil |
Utilities for working with Microsoft CodePages.
|
| DocumentHelper |
|
| HexDump |
dump data in hexadecimal format; derived from a HexDump utility I
wrote in June 2001.
|
| HexRead |
Utilities to read hex from files.
|
| IntegerField |
representation of an integer (32-bit) field at a fixed location
within a byte array
|
| IntList |
A List of int's; as full an implementation of the java.util.List
interface as possible, with an eye toward minimal creation of
objects
the mimicry of List is as follows:
if possible, operations designated 'optional' in the List
interface are attempted
wherever the List interface refers to an Object, substitute
int
wherever the List interface refers to a Collection or List,
substitute IntList
the mimicry is not perfect, however:
operations involving Iterators or ListIterators are not
supported
remove(Object) becomes removeValue to distinguish it from
remove(int index)
subList is not supported
|
| IOUtils |
|
| LittleEndian |
a utility class for handling little-endian numbers, which the 80x86 world is
replete with.
|
| LittleEndianByteArrayOutputStream |
|
| LittleEndianInputStream |
|
| LittleEndianOutputStream |
|
| LocaleUtil |
This utility class is used to set locale and time zone settings beside
of the JDK internal Locale.setDefault(Locale) and
TimeZone.setDefault(TimeZone) methods, because
the locale/time zone specific handling of certain office documents -
maybe for different time zones / locales ...
|
| LongField |
representation of a long (16-bit) field at a fixed location within
a byte array
|
| PngUtils |
|
| SAXHelper |
Provides handy methods for working with SAX parsers and readers
|
| ShortField |
representation of a short (16-bit) field at a fixed location within
a byte array
|
| StringUtil |
Title: String Utility Description: Collection of string handling utilities
|
| StringUtil.StringsIterator |
An Iterator over an array of Strings.
|
| TempFile |
Interface for creating temporary files.
|
| TempFile.DefaultTempFileCreationStrategy |
|