public static enum SearchObject.VariableDataType extends java.lang.Enum<SearchObject.VariableDataType>
Enum Constant and Description |
---|
CHARACTER
Character.
|
DATE
Date.
|
NUMBER
Number.
|
TIME
Time.
|
TIMESTAMP
Timestamp.
|
Modifier and Type | Method and Description |
---|---|
static SearchObject.VariableDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchObject.VariableDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchObject.VariableDataType CHARACTER
public static final SearchObject.VariableDataType TIMESTAMP
public static final SearchObject.VariableDataType NUMBER
public static final SearchObject.VariableDataType DATE
public static final SearchObject.VariableDataType TIME
public static SearchObject.VariableDataType[] values()
for (SearchObject.VariableDataType c : SearchObject.VariableDataType.values()) System.out.println(c);
public static SearchObject.VariableDataType 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 namejava.lang.NullPointerException
- if the argument is null