Interface | Description |
---|---|
ColumnMapper |
A utility that allows users to manually define mappings from
attributes/methods of a given class to columns to be parsed or written.
|
FieldSelector |
Interface used to identify classes capable of selecting fields and returning their positions in a given sequence.
|
Class | Description |
---|---|
AbstractColumnMapping<K> |
Basic support operations for mapping attributes/methods to columns in a
ColumnMapper |
AbstractConversionMapping<T> |
Class responsible for managing field selections and any conversion sequence associated with each.
|
AllIndexesSelector |
A FieldSelector that selects all indexes of a record.
|
ColumnMapping |
Implementation the
ColumnMapper interface which allows
users to manually define mappings from attributes/methods of a given class
to columns to be parsed or written. |
ExcludeFieldEnumSelector |
A FieldSelector capable of deselecting fields in a record.
|
ExcludeFieldIndexSelector |
A FieldSelector capable of deselecting fields by their position in a record.
|
ExcludeFieldNameSelector |
A FieldSelector capable of deselecting fields by their name in a record.
|
FieldConversionMapping |
A class for mapping field selections to sequences of
Conversion objects |
FieldEnumSelector |
A FieldSelector capable of selecting fields represented by values of an enumeration type.
|
FieldIndexSelector |
A FieldSelector capable of selecting fields by their position in a record.
|
FieldNameSelector |
A FieldSelector capable of selecting fields by their name.
|
FieldSet<T> |
A set of selected fields.
|