org.gcube.data.analysis.tabulardata.model.datatype
Enum DataTypeEnum
java.lang.Object
java.lang.Enum<DataTypeEnum>
org.gcube.data.analysis.tabulardata.model.datatype.DataTypeEnum
- All Implemented Interfaces:
- Serializable, Comparable<DataTypeEnum>
public enum DataTypeEnum
- extends Enum<DataTypeEnum>
|
Method Summary |
static DataTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DataTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
BOOLEAN
public static final DataTypeEnum BOOLEAN
INTEGER
public static final DataTypeEnum INTEGER
NUMERIC
public static final DataTypeEnum NUMERIC
DATE
public static final DataTypeEnum DATE
TIME
public static final DataTypeEnum TIME
TIMESTAMP
public static final DataTypeEnum TIMESTAMP
TEXT
public static final DataTypeEnum TEXT
GEOMETRY
public static final DataTypeEnum GEOMETRY
values
public static DataTypeEnum[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (DataTypeEnum c : DataTypeEnum.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DataTypeEnum valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (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 type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2013. All Rights Reserved.