|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DataType>
de.cau.cs.kieler.kvid.data.DataType
public enum DataType
Enum for data types known and processed by KViD. Use STRING as a default if you have data in string representation.
Enum Constant Summary | |
---|---|
BOOLEAN
Deprecated. Value for data represented as boolean. |
|
FLOAT
Deprecated. Value for floating point data. |
|
INT
Deprecated. Value for integer data. |
|
STRING
Deprecated. Value for data represented by a string. |
Method Summary | |
---|---|
static DataType |
valueOf(String name)
Deprecated. Returns the enum constant of this type with the specified name. |
static DataType[] |
values()
Deprecated. 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 INT
public static final DataType FLOAT
public static final DataType STRING
public static final DataType BOOLEAN
Method Detail |
---|
public static DataType[] values()
for (DataType c : DataType.values()) System.out.println(c);
public static DataType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |