Enum Constant and Description |
---|
Boolean
Boolean data type.
|
Double
64-bit signed double data type.
|
Integer
32-bit signed integer data type.
|
Long
64-bit signed integer data type.
|
OID
Object identifier (OID) data type.
|
String
Unicode string data type.
|
Text
Large unicode character object (CLOB) data type.
|
Timestamp
Distance from Epoch (UTC) time in milliseconds precision.
|
Modifier and Type | Method and Description |
---|---|
static DataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataType Boolean
Boolean data type.
public static final DataType Integer
32-bit signed integer data type.
public static final DataType Long
64-bit signed integer data type.
public static final DataType Double
64-bit signed double data type.
public static final DataType Timestamp
Distance from Epoch (UTC) time in milliseconds precision.
public static final DataType String
Unicode string data type.
public static final DataType Text
Large unicode character object (CLOB) data type.
public static final DataType OID
Object identifier (OID) data type.
public static DataType[] values()
for (DataType c : DataType.values()) System.out.println(c);
public static DataType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null