Modifier and Type | Method | Description |
---|---|---|
AbstractColumnParser<?> |
ColumnType.customParser(ReadOptions options) |
TODO: Research this method to provide a good comment
|
Modifier and Type | Method | Description |
---|---|---|
BooleanColumn |
BooleanColumn.appendCell(String object,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
DateColumn |
DateColumn.appendCell(String string,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
DateTimeColumn |
DateTimeColumn.appendCell(String stringValue,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
DoubleColumn |
DoubleColumn.appendCell(String value,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
FloatColumn |
FloatColumn.appendCell(String value,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
InstantColumn |
InstantColumn.appendCell(String stringValue,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
IntColumn |
IntColumn.appendCell(String value,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
LongColumn |
LongColumn.appendCell(String value,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
ShortColumn |
ShortColumn.appendCell(String value,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
StringColumn |
StringColumn.appendCell(String object,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
TextColumn |
TextColumn.appendCell(String object,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
TimeColumn |
TimeColumn.appendCell(String object,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
static TimeColumn |
TimeColumn.create(String name,
AbstractColumnParser<LocalTime> parser) |
|
BooleanColumn |
BooleanColumn.set(int row,
String stringValue,
AbstractColumnParser<?> parser) |
Sets the value at row to the parsed value of the given String using the given parser and
returns this column
|
Column<Double> |
DoubleColumn.set(int row,
String stringValue,
AbstractColumnParser<?> parser) |
Sets the value at row to the parsed value of the given String using the given parser and
returns this column
|
Column<Float> |
FloatColumn.set(int row,
String stringValue,
AbstractColumnParser<?> parser) |
Sets the value at row to the parsed value of the given String using the given parser and
returns this column
|
Column<Integer> |
IntColumn.set(int row,
String stringValue,
AbstractColumnParser<?> parser) |
Sets the value at row to the parsed value of the given String using the given parser and
returns this column
|
Column<Long> |
LongColumn.set(int row,
String stringValue,
AbstractColumnParser<?> parser) |
Sets the value at row to the parsed value of the given String using the given parser and
returns this column
|
Column<Short> |
ShortColumn.set(int row,
String stringValue,
AbstractColumnParser<?> parser) |
Sets the value at row to the parsed value of the given String using the given parser and
returns this column
|
Constructor | Description |
---|---|
NumberColumn(ColumnType type,
String name,
AbstractColumnParser<T> parser) |
Modifier and Type | Method | Description |
---|---|---|
AbstractColumnParser<?> |
SkipColumnType.customParser(ReadOptions options) |
TODO: Research this method to provide a good comment
|
AbstractColumnParser<T> |
AbstractColumn.parser() |
Returns the parser used by
Column.appendCell(String) ()}. |
AbstractColumnParser<T> |
Column.parser() |
Returns the parser used by
Column.appendCell(String) ()}. |
Modifier and Type | Method | Description |
---|---|---|
Column<T> |
Column.appendCell(String stringValue,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
default Column<T> |
Column.set(int row,
String stringValue,
AbstractColumnParser<?> parser) |
Sets the value at row to the parsed value of the given String using the given parser and
returns this column
|
C |
AbstractColumn.setParser(AbstractColumnParser<T> parser) |
Sets the parser used by
Column.appendCell(String) |
Column<T> |
Column.setParser(AbstractColumnParser<T> parser) |
Sets the parser used by
Column.appendCell(String) |
Constructor | Description |
---|---|
AbstractColumn(ColumnType type,
String name,
AbstractColumnParser<T> parser) |
Constructs a column with the given
ColumnType , name, and AbstractColumnParser |
Modifier and Type | Class | Description |
---|---|---|
class |
BooleanParser |
Modifier and Type | Class | Description |
---|---|---|
class |
DateParser |
Modifier and Type | Method | Description |
---|---|---|
AbstractColumnParser<LocalDate> |
DateColumnType.customParser(ReadOptions options) |
Modifier and Type | Class | Description |
---|---|---|
class |
DateTimeParser |
Modifier and Type | Class | Description |
---|---|---|
class |
InstantParser |
Modifier and Type | Class | Description |
---|---|---|
class |
DoubleParser |
|
class |
FloatParser |
|
class |
IntParser |
|
class |
LongParser |
|
class |
ShortParser |
Modifier and Type | Class | Description |
---|---|---|
class |
StringParser |
Constructor | Description |
---|---|
AbstractStringColumn(ColumnType type,
String name,
AbstractColumnParser<String> parser) |
Constructs a column of the given ColumnType, name, and parser
|
Modifier and Type | Class | Description |
---|---|---|
class |
TimeParser |
Modifier and Type | Method | Description |
---|---|---|
AbstractColumnParser<LocalTime> |
TimeColumnType.customParser(ReadOptions options) |
Copyright © 2022. All rights reserved.