| Modifier and Type | Class and Description |
|---|---|
class |
DataRow
Created by Alex on 09.03.2016.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
DataFrameColumn.append(Row<?,?> row,
int index)
A new value is appended at the end of this column using
DataFrameColumn.doAppend(Comparable). |
<H> boolean |
DataFrameColumn.append(Row<?,H> row,
H headerName)
A new value is appended at the end of this column using
DataFrameColumn.doAppend(Comparable). |
abstract T |
DataFrameColumn.getValueFromRow(Row<?,?> row,
int headerIdex) |
abstract <H> T |
DataFrameColumn.getValueFromRow(Row<?,H> row,
H headerName) |
| Modifier and Type | Method and Description |
|---|---|
String |
StringColumn.getValueFromRow(Row<?,?> row,
int headerIndex) |
Short |
ShortColumn.getValueFromRow(Row<?,?> row,
int headerIndex) |
Long |
LongColumn.getValueFromRow(Row<?,?> row,
int headerIndex) |
Integer |
IntegerColumn.getValueFromRow(Row<?,?> row,
int headerIndex) |
Float |
FloatColumn.getValueFromRow(Row<?,?> row,
int headerIndex) |
Double |
DoubleColumn.getValueFromRow(Row<?,?> row,
int headerIndex) |
Byte |
ByteColumn.getValueFromRow(Row<?,?> row,
int headerIndex) |
Boolean |
BooleanColumn.getValueFromRow(Row<?,?> row,
int headerIndex) |
<H> String |
StringColumn.getValueFromRow(Row<?,H> row,
H headerName) |
<H> Short |
ShortColumn.getValueFromRow(Row<?,H> row,
H headerName) |
<H> Long |
LongColumn.getValueFromRow(Row<?,H> row,
H headerName) |
<H> Integer |
IntegerColumn.getValueFromRow(Row<?,H> row,
H headerName) |
<H> Float |
FloatColumn.getValueFromRow(Row<?,H> row,
H headerName) |
<H> Double |
DoubleColumn.getValueFromRow(Row<?,H> row,
H headerName) |
<H> Byte |
ByteColumn.getValueFromRow(Row<?,H> row,
H headerName) |
<H> Boolean |
BooleanColumn.getValueFromRow(Row<?,H> row,
H headerName) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DataContainer<H extends Header,R extends Row>
Created by Alex on 14.03.2016.
|
interface |
ReaderBuilder<H extends Header,R extends Row>
Created by Alex on 07.06.2016.
|
interface |
RowIterator<T extends Row>
Created by Alex on 10.03.2016.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DataWriter.print(DataContainer<? extends Header,? extends Row> dataContainer)
Prints a data container to
System.out |
void |
DataWriter.print(PrintStream printStream,
DataContainer<? extends Header,? extends Row> dataContainer)
Prints a data container to a
PrintStream |
void |
DataWriter.write(File file,
DataContainer<? extends Header,? extends Row> dataContainer)
Writes a data container into a file
|
| Modifier and Type | Method and Description |
|---|---|
void |
FieldColumn.set(Row row,
Object object)
Converts and inserts a value from a row into an object
|
| Modifier and Type | Method and Description |
|---|---|
static <T> List<T> |
DataMapper.map(DataContainer<? extends Header,? extends Row> reader,
Class<T> cl)
Maps a
DataContainer to a list
The specified type of entities in the list must have MappedColumn annotated fields. |
static <T> Iterator<T> |
DataMapper.mapEach(DataContainer<? extends Header,? extends Row> reader,
Class<T> cl)
Returns an iterator over mapped entities from the data container
The specified type of entities must have
MappedColumn annotated fields. |
| Modifier and Type | Class and Description |
|---|---|
class |
BufferedStreamIterator<R extends Row>
Created by Alex on 19.05.2017.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BasicRow<T,H extends Header<T>,V>
Created by Alex on 19.05.2017.
|
class |
StringRow<T,H extends Header<T>>
Created by Alex on 19.05.2017.
|
class |
UpdateableRow<T,H extends Header<T>,V>
Created by Alex on 19.05.2017.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CSVRow
Created by Alex on 09.03.2016.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CSVWriter.print(DataContainer<? extends Header,? extends Row> dataContainer) |
void |
CSVWriter.print(PrintStream printWriter,
DataContainer<? extends Header,? extends Row> dataContainer) |
void |
CSVWriter.write(File file,
DataContainer<? extends Header,? extends Row> dataContainer) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
MatchPredicate.valid(Row row)
Returns true if the row column value matches the pattern
|
abstract boolean |
FilterPredicate.valid(Row row)
Returns true if the row is valid for this predicate
|
boolean |
ComparePredicate.valid(Row row)
Returns true if the row is valid for this predicate
|
boolean |
ColumnComparePredicate.valid(Row row)
Returns true if the row is valid for this predicate
|
| Modifier and Type | Class and Description |
|---|---|
class |
GroupValues
Created by Alex on 15.03.2016.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractJoin.setGroupValuesA(Comparable[] groupValues,
Row<Comparable,String> row,
JoinColumn[] joinColumns)
Fills the join values of the first data frame into an values array
|
void |
AbstractJoin.setGroupValuesB(Comparable[] groupValues,
Row<Comparable,String> row,
JoinColumn[] joinColumns)
Fills the join values of the second data frame into an values array
|
Copyright © 2017. All rights reserved.