Enum Class DataType
- All Implemented Interfaces:
Serializable, Comparable<DataType>, Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBoolean data type.64-bit signed double data type.32-bit signed integer data type.64-bit signed integer data type.Object identifier (OID) data type.Unicode string data type.Large unicode character object (CLOB) data type.Distance from Epoch (UTC) time in milliseconds precision. -
Method Summary
-
Enum Constant Details
-
Boolean
Boolean data type.Boolean data type.
-
Integer
32-bit signed integer data type.32-bit signed integer data type.
-
Long
64-bit signed integer data type.64-bit signed integer data type.
-
Double
64-bit signed double data type.64-bit signed double data type.
-
Timestamp
Distance from Epoch (UTC) time in milliseconds precision.Distance from Epoch (UTC) time in milliseconds precision.
-
String
Unicode string data type.Unicode string data type.
-
Text
Large unicode character object (CLOB) data type.Large unicode character object (CLOB) data type.
-
OID
Object identifier (OID) data type.Object identifier (OID) data type.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-