| Interface | Description |
|---|---|
| BooleanConsumer |
Represents an operation that accepts a single
boolean-valued argument and
returns no result. |
| ByteConsumer |
Represents an operation that accepts a single
boolean-valued argument and
returns no result. |
| CharConsumer |
Represents an operation that accepts a single
char-valued argument and
returns no result. |
| CharSupplier |
Character supplier interface.
|
| IntDblToDblFun |
A functional interface that accepts int and double values and returns a double value.
|
| NativeTypeSerializer.Reader<T> |
Generic reader
|
| NativeTypeSerializer.Writer<T> |
Generic reader
|
| Printable |
Printable provides a convenient interface for classes willing
to implement the Object.toString() method using ToStringHelper. |
| ShortConsumer |
Represents an operation that accepts a single
short-valued argument and
returns no result. |
| Class | Description |
|---|---|
| CaseInsensitiveHashMap<K,V> |
Case-insensitive hash map with API compatible with Java hash map.
|
| CaseInsensitiveHashSet<V> |
Case-insensitive hash set.
|
| CaseInsensitiveLinkedHashMap<K,V> | |
| CaseInsensitiveString | |
| DatabaseDumpChecker |
An utility application which read a set of files to estimate the success of an import process.
|
| EmptyIterator<E> |
An implementation of an
Iterator which manages no elements. |
| EmptySet<E> |
Implementation of a (reasonably) low overhead, empty set.
|
| FastSiblingDeque<E> |
A
Deque with support for access of siblings of a particular element. |
| FastSiblingDeque.FsdNode<E> |
A node in double-linked list of
FastSiblingDeque. |
| FastStringBuilder |
An alternative string builder implementation with fast insert operation.
|
| FibonacciCounter |
A counter which provides the numbers of a Fibonacci sequence, starting with [1, 1] and
progressing indefinitely (practically limited by a 64-bit integer implementation -- values
higher than can fit into this data type will overflow and become meaningless).
|
| GenericSAXHandler |
Generic SAX handler for building Java objects from data stored as XML.
|
| GenericSAXHandler.ActiveNode<T> |
Simple convenience container to decouple the mapper from the object it
constructs, without breaking generic type safety.
|
| HexDump |
Dump ByteBuffer content
|
| ImageWorker |
Image helper class.
|
| IniFile |
INI file read support.
|
| LoggingAspect |
The class implements Aspect logging of a program execution.
|
| Mapper<T> |
Mappers are used by
GenericSAXHandler for binding low level
XML data to Java objects; this is the base class containing the main logic
responsible for that. |
| MutableInteger |
A simple, mutable integer, initialized to 0.
|
| NativeTypeSerializer |
Helper class to serialize native values, useful in cases when the value's type is unknown at
compile time (i.e.
|
| NativeTypeSerializer.BooleanSerializer |
A serializer for native
boolean values. |
| NativeTypeSerializer.ByteSerializer |
A serializer for native
byte values. |
| NativeTypeSerializer.CharSerializer |
A serializer for native
char values. |
| NativeTypeSerializer.DoubleSerializer |
A serializer for native
double values. |
| NativeTypeSerializer.Externalizer<T extends java.io.Externalizable> |
Helper class for (de)serialization classes with subclasses
|
| NativeTypeSerializer.FloatSerializer |
A serializer for native
float values. |
| NativeTypeSerializer.IntSerializer |
A serializer for native
int values. |
| NativeTypeSerializer.LongSerializer |
A serializer for native
long values. |
| NativeTypeSerializer.ObjectSerializer |
A fallback serializer for
Object instances. |
| NativeTypeSerializer.ShortSerializer |
A serializer for native
short values. |
| NativeTypeSerializer.StringSerializer |
A serializer for
String values. |
| NormalizePath |
Utility class for normalizing paths that will go into the application JAR.
|
| PasswordHelper |
Helper class to generate salt, encrypt a password with the PBKDF2WithHmacSHA1 algorithm, and
to authenticate passwords by encrypting them with the same algorithm and comparing results.
|
| PathHelper |
File system path helper methods.
|
| PayloadSerializer |
Helper class to (de)serialize Message payload (a generic array of Object)
|
| PayloadSerializer.ArrayHelper<T> |
Helper class for scalar classes and their arrays
|
| PayloadSerializer.Cls<T extends java.io.Externalizable> |
Helper class for processing Externalizable FWD classes
|
| PayloadSerializer.Core<T> |
Helper class for processing core Java classes
|
| PayloadSerializer.Helper<T> |
Helper class for different types of payload components
|
| PayloadSerializer.Primitive<T> |
Helper classes for primitive arrays
|
| PlatformHelper |
Provides a set of methods to help in processing with different operating
systems.
|
| PrintHelper |
Internal object printing support
|
| PrintSystemProp |
Simple helper to print out a Java "System Property" to STDOUT.
|
| RandomWordGenerator |
Simple helper to create a random word, suitable for use as a password or other security token.
|
| Rect |
Represents an immutable rectangle defined by its bottom-left and top-right coordinates.
|
| Rect.Edge |
The Edge class represents an edge of a rectangle defined by its starting and ending coordinates.
|
| RefCount |
Very basic reference count object with a mutable counter value.
|
| Stack<T> |
A stack implementation which behaves the same as
Stack, but is not synchronized. |
| StringHelper |
Provides a set of methods to help in processing and formatting
String objects. |
| StringOutputStream |
Helper class to create String via OutputStream.
|
| URLs |
A helper class for all kind of URL handling.
|
| XmlHelper |
Collection of useful, static, helper methods for various XML processing
tasks, including parsing and writing (serializing) XML data.
|
| Annotation Type | Description |
|---|---|
| LogExecution |
When method is annotated with this class, its execution will be logged by
LoggingAspect. |