|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DataType>
gov.nih.nci.caarray.external.v1_0.data.DataType
public enum DataType
DataType is an enumeration of the possible value types that a single value of a data column may have.
Enum Constant Summary | |
---|---|
BOOLEAN
data type for boolean values. |
|
DOUBLE
data type for double precision float values. |
|
FLOAT
data type for float values. |
|
INTEGER
data type for integer values. |
|
LONG
data type for long integer values. |
|
SHORT
data type for short integer values. |
|
STRING
data type for string values. |
Method Summary | |
---|---|
java.lang.String |
getName()
|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DataType INTEGER
public static final DataType SHORT
public static final DataType LONG
public static final DataType FLOAT
public static final DataType DOUBLE
public static final DataType BOOLEAN
public static final DataType STRING
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String getName()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |