public enum DataType extends Enum<DataType>
| Enum Constant and Description |
|---|
Boolean |
Number |
String |
Text |
Time |
Time_Interval |
Times_ListOf |
| Modifier and Type | Method and Description |
|---|---|
String |
value()
Value.
|
static DataType |
valueOf(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 String
public static final DataType Time
public static final DataType Time_Interval
public static final DataType Times_ListOf
public static final DataType Text
public static final DataType Boolean
public static final DataType Number
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 nameNullPointerException - if the argument is nullpublic String value()
Copyright © 2016. All Rights Reserved.