| Package | Description |
|---|---|
| de.unknownreality.dataframe | |
| de.unknownreality.dataframe.column | |
| de.unknownreality.dataframe.common.parser | |
| de.unknownreality.dataframe.common.row |
| Modifier and Type | Method and Description |
|---|---|
abstract Parser<T> |
DataFrameColumn.getParser()
Returns a
Parser for the type of the values in this column. |
| Modifier and Type | Method and Description |
|---|---|
Parser<String> |
StringColumn.getParser() |
Parser<Short> |
ShortColumn.getParser() |
Parser<Long> |
LongColumn.getParser() |
Parser<Integer> |
IntegerColumn.getParser() |
Parser<Float> |
FloatColumn.getParser() |
Parser<Double> |
DoubleColumn.getParser() |
Parser<Byte> |
ByteColumn.getParser() |
Parser<Boolean> |
BooleanColumn.getParser() |
| Modifier and Type | Method and Description |
|---|---|
static <T> Parser<T> |
ParserUtil.findParserOrNull(Class<T> cl)
Returns a parser for the input class or null if no parser is found
|
static <T> Parser<T> |
ParserUtil.getParser(Class<T> cl)
Returns a parser for the input class
|
| Modifier and Type | Method and Description |
|---|---|
static <T> void |
ParserUtil.addParser(Class<T> c,
Parser<T> p)
Adds a parser for the input class
|
| Modifier and Type | Method and Description |
|---|---|
protected <C> C |
StringRow.parse(int index,
Class<C> cl,
Parser<C> parser)
Gets a value by its index and parses it into a specified type
This method throws a
DataFrameRuntimeException if anything goes wrong. |
protected <C> C |
StringRow.parse(T name,
Class<C> cl,
Parser<C> parser)
Gets a value by its column header name and parses it into a specified type
This method throws a
DataFrameRuntimeException if anything goes wrong. |
Copyright © 2017. All rights reserved.