Package | Description |
---|---|
prefuse.data.column |
Data columns for storing typed data within a data table.
|
prefuse.data.parser |
Text parsers for different data types and machinery for
automatically inferring data types.
|
Modifier and Type | Field and Description |
---|---|
protected DataParser |
AbstractColumn.m_parser |
Modifier and Type | Method and Description |
---|---|
DataParser |
AbstractColumn.getParser() |
DataParser |
Column.getParser()
Get the data parser used to map String values to and from the values
stored by this Column.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractColumn.setParser(DataParser parser) |
void |
Column.setParser(DataParser parser)
Set the data parser used to map String values to and from the values
stored by this Column.
|
Modifier and Type | Class and Description |
---|---|
class |
BooleanParser
DataParser instance that parses boolean values.
|
class |
ByteParser
DataParser instance the parses int values from a text string.
|
class |
ColorIntParser
DataParser instance the parses int color values from a
hexadecimal text string.
|
class |
DateParser
DataParser instance that parses Date values as java.sql.Time instances,
representing a particular date (but not a specific time on that day).
|
class |
DateTimeParser
DataParser instance that parses Date values as java.util.Date instances,
representing a particular date and time.
|
class |
DoubleArrayParser
DataParser instance the parses an array of double values from a text string.
|
class |
DoubleParser
DataParser instance that parses double values from a text string.
|
class |
FloatArrayParser
DataParser instance the parses an array of float values from a text string.
|
class |
FloatParser
DataParser instance that parses float values from a text string.
|
class |
IntArrayParser
DataParser instance the parses an array of int values from a text string.
|
class |
IntParser
DataParser instance the parses int values from a text string.
|
class |
LongArrayParser
DataParser instance the parses an array of long values from a text string.
|
class |
LongParser
DataParser instance that parses long values from a text string.
|
class |
ObjectParser
DataParser instance that handles arbitrary Objects.
|
class |
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.
|
class |
TimeParser
DataParser instance that parses Date values as java.util.Time instances,
representing a particular time (but no specific date).
|
Modifier and Type | Method and Description |
---|---|
protected DataParser |
ParserFactory.getParser()
Returns the highest ranking parser that successfully can
parse all the input samples viewed by this instance.
|
DataParser |
ParserFactory.getParser(java.lang.Class type)
Returns a parser for the specified data type.
|
DataParser |
TypeInferencer.getParser(int column)
Get the top-ranking candidate data parser for the given column index.
|
DataParser |
ParserFactory.getParser(java.lang.String[][] data,
int col,
int startRow)
Analyzes a column of the given array of String values to
determine an acceptable parser data type.
|
DataParser |
ParserFactory.getParser(java.lang.String[] data,
int startRow)
Analyzes the given array of String values to determine an
acceptable parser data type.
|
Constructor and Description |
---|
ParserFactory(DataParser[] parsers)
Constructor.
|
Copyright ? 2013 Regents of the University of California