| Interface | Description |
|---|---|
| DataParser |
Interface for data parsers, which parse data values from text Strings
and generated formatted text Strings for data values.
|
| Class | Description |
|---|---|
| BooleanParser |
DataParser instance that parses boolean values.
|
| ByteParser |
DataParser instance the parses int values from a text string.
|
| ColorIntParser |
DataParser instance the parses int color values from a
hexadecimal text string.
|
| DateParser |
DataParser instance that parses Date values as java.sql.Time instances,
representing a particular date (but not a specific time on that day).
|
| DateTimeParser |
DataParser instance that parses Date values as java.util.Date instances,
representing a particular date and time.
|
| DoubleArrayParser |
DataParser instance the parses an array of double values from a text string.
|
| DoubleParser |
DataParser instance that parses double values from a text string.
|
| FloatArrayParser |
DataParser instance the parses an array of float values from a text string.
|
| FloatParser |
DataParser instance that parses float values from a text string.
|
| IntArrayParser |
DataParser instance the parses an array of int values from a text string.
|
| IntParser |
DataParser instance the parses int values from a text string.
|
| LongArrayParser |
DataParser instance the parses an array of long values from a text string.
|
| LongParser |
DataParser instance that parses long values from a text string.
|
| ObjectParser |
DataParser instance that handles arbitrary Objects.
|
| ParserFactory |
Factory class that maintains a collection of parser instances and returns
the appropriate parser based on a history of samples presented to the
factory.
|
| StringParser |
DataParser instance that "parses" a String value from a text string, this
is the default fallback parser, which simply returns the string value
to be parsed.
|
| TimeParser |
DataParser instance that parses Date values as java.util.Time instances,
representing a particular time (but no specific date).
|
| TypeInferencer |
Infers the data types for a table of data by testing each value
of the data against a bank of parsers and eliminating candidate
parsers that do not successfully parse the data.
|
| Exception | Description |
|---|---|
| DataParseException |
Exception indicating an error occurred during parsing of data values.
|