Interface DataTypes
public interface DataTypes
To get a specific data type, users should use singleton objects
and factory methods in this class.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ArrayTypeBoolean Array data type.static final BooleanTypeBoolean data type.static final ArrayTypeByte Array data type.static final ByteTypeByte data type.static final ArrayTypeChar Array data type.static final CharTypeChar data type.static final DateTimeTypeDateTime data type with ISO format.static final DateTypeDate data type with ISO format.static final DecimalTypeDecimal data type.static final ArrayTypeDouble Array data type.static final DoubleTypeDouble data type.static final ArrayTypeFloat Array data type.static final FloatTypeFloat data type.static final ArrayTypeInteger Array data type.static final IntTypeInteger data type.static final ArrayTypeLong Array data type.static final LongTypeLong data type.static final BooleanTypeNullable boolean data type.static final ByteTypeNullable byte data type.static final CharTypeNullable char data type.static final DoubleTypeNullable double data type.static final FloatTypeNullable float data type.static final IntTypeNullable integer data type.static final LongTypeNullable long data type.static final ShortTypeNullable short data type.static final ObjectTypePlain Object data type.static final ArrayTypeShort Array data type.static final ShortTypeShort data type.static final StringTypeString data type.static final TimeTypeTime data type with ISO format. -
Method Summary
-
Field Details
-
BooleanType
Boolean data type. -
CharType
Char data type. -
ByteType
Byte data type. -
ShortType
Short data type. -
IntType
Integer data type. -
LongType
Long data type. -
FloatType
Float data type. -
DoubleType
Double data type. -
NullableBooleanType
Nullable boolean data type. -
NullableCharType
Nullable char data type. -
NullableByteType
Nullable byte data type. -
NullableShortType
Nullable short data type. -
NullableIntType
Nullable integer data type. -
NullableLongType
Nullable long data type. -
NullableFloatType
Nullable float data type. -
NullableDoubleType
Nullable double data type. -
DecimalType
Decimal data type. -
StringType
String data type. -
DateType
Date data type with ISO format. -
DateTimeType
DateTime data type with ISO format. -
TimeType
Time data type with ISO format. -
ObjectType
Plain Object data type. -
BooleanArrayType
Boolean Array data type. -
CharArrayType
Char Array data type. -
ByteArrayType
Byte Array data type. -
ShortArrayType
Short Array data type. -
IntArrayType
Integer Array data type. -
LongArrayType
Long Array data type. -
FloatArrayType
Float Array data type. -
DoubleArrayType
Double Array data type.
-
-
Method Details
-
object
-
category
Returns a data type of categorical variable.- Parameters:
levels- the number of categorical measurement levels.- Returns:
- the categorical data type.
-
array
-