public enum KeyType extends Enum<KeyType>
Java class for key.type.type.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="key.type.type"> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="boolean"/> <enumeration value="int"/> <enumeration value="long"/> <enumeration value="float"/> <enumeration value="double"/> <enumeration value="string"/> </restriction> </simpleType>
Enum Constant and Description |
---|
BOOLEAN |
DOUBLE |
FLOAT |
INT |
LONG |
STRING |
Modifier and Type | Method and Description |
---|---|
static KeyType |
fromValue(String v) |
String |
value() |
static KeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyType BOOLEAN
public static final KeyType INT
public static final KeyType LONG
public static final KeyType FLOAT
public static final KeyType DOUBLE
public static final KeyType STRING
public static KeyType[] values()
for (KeyType c : KeyType.values()) System.out.println(c);
public static KeyType 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()