See: Description
Interface | Description |
---|---|
BoolCellDefinition |
Definition of a
boolean cell. |
BytesCellDefinition | |
CellDefinition<T> |
A
{name, type} tuple that identifies a cell. |
CharCellDefinition |
Definition of a
character cell. |
ComparableCellDefinition<T extends java.lang.Comparable<T>> |
Definition of a comparable cell.
|
DoubleCellDefinition |
Definition of a
double cell. |
IntCellDefinition |
Definition of a
integer cell. |
LongCellDefinition |
Definition of a
long cell. |
StringCellDefinition |
Definition of a
string cell. |
Class | Description |
---|---|
CellDefinition.CellImpl<T> | |
CellDefinition.Impl<T> |
Internal interned definition implementation.
|
Cell definition instances act as:
CellDefinition.newCell(java.lang.Object)
.CellDefinition.value()
(and others).
Type specific cell definitions allow for the accessing of construction of cell value manipulation
functions that are applicable only for that cell type (e.g stringCellDefinition.value().startsWith("Prefix")
.