|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DataParser | |
---|---|
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. |
Uses of DataParser in prefuse.data.column |
---|
Fields in prefuse.data.column declared as DataParser | |
---|---|
protected DataParser |
AbstractColumn.m_parser
|
Methods in prefuse.data.column that return DataParser | |
---|---|
DataParser |
Column.getParser()
Get the data parser used to map String values to and from the values stored by this Column. |
DataParser |
AbstractColumn.getParser()
|
Methods in prefuse.data.column with parameters of type DataParser | |
---|---|
void |
Column.setParser(DataParser parser)
Set the data parser used to map String values to and from the values stored by this Column. |
void |
AbstractColumn.setParser(DataParser parser)
|
Uses of DataParser in prefuse.data.parser |
---|
Classes in prefuse.data.parser that implement DataParser | |
---|---|
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). |
Methods in prefuse.data.parser that return DataParser | |
---|---|
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. |
Constructors in prefuse.data.parser with parameters of type DataParser | |
---|---|
ParserFactory(DataParser[] parsers)
Constructor. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |