Package app.babylon.table.column
Class ColumnTypes
java.lang.Object
app.babylon.table.column.ColumnTypes
Standard built-in column types.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Column.TypePrimitive byte type.static final Column.TypeBoxed byte type.static final Column.TypeCurrency type.static final Column.TypeBigDecimal type.static final Column.TypePrimitive double type.static final Column.TypeBoxed double type.static final Column.TypePrimitive int type.static final Column.TypeBoxed int type.static final Column.TypeLocalDate type.static final Column.TypePrimitive long type.static final Column.TypeBoxed long type.static final Column.TypeString type. -
Method Summary
-
Field Details
-
BYTE
Primitive byte type. -
BYTE_OBJECT
Boxed byte type. -
INT
Primitive int type. -
INT_OBJECT
Boxed int type. -
LONG
Primitive long type. -
LONG_OBJECT
Boxed long type. -
DOUBLE
Primitive double type. -
DOUBLE_OBJECT
Boxed double type. -
STRING
String type. -
DECIMAL
BigDecimal type. -
LOCALDATE
LocalDate type. -
CURRENCY
Currency type.
-