public enum EnumLiteralType extends Enum<EnumLiteralType>
Enum Constant and Description |
---|
BOOLEAN
Boolean type.
|
DATE
Date type.
|
NUMERIC
Numeric type.
|
OTHER
Unrecognized type.
|
STRING
String type.
|
TIME
Time type.
|
Modifier and Type | Method and Description |
---|---|
static EnumLiteralType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumLiteralType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumLiteralType STRING
public static final EnumLiteralType NUMERIC
public static final EnumLiteralType DATE
public static final EnumLiteralType TIME
public static final EnumLiteralType BOOLEAN
public static final EnumLiteralType OTHER
public static EnumLiteralType[] values()
for (EnumLiteralType c : EnumLiteralType.values()) System.out.println(c);
public static EnumLiteralType 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 nullCopyright © 2013. All Rights Reserved.