See: Description
Interface | Description |
---|---|
Collectable<V> |
An aggregation of data, which resembles a row in a CSV file.
|
MultiCollectable<V> |
A
Collectable which will return values for several rows. |
OneShotCollectable<V> |
A
Collectable that contains data for a whole file, which is to be
written to a new file after each collection. |
Class | Description |
---|---|
AbstractCollectable<V> |
A simple implementation of
Collectable storing data in a List
, which can be cleared and replaced by initial values. |
AbstractMultiCollectable<V> |
Abstract
MultiCollectable implementation backed by a two-dimensional
list. |
CategoryCollectable<K,ColT extends Collectable<V>,V> |
Collectable that acts on a map containing categories each
pointing to a collectable. |
EnumCollectable<K extends Enum<K>,V> |
Collectable storing values for enum constants. |