public static enum ValueInfo.Kind extends Enum<ValueInfo.Kind>
ValueInfo
.Enum Constant and Description |
---|
ANNOTATION
annotation kind.
|
BOOLEAN
boolean kind.
|
BYTE
byte kind.
|
CHAR
char kind.
|
CLASS
class kind.
|
DOUBLE
double kind.
|
ENUM
enum kind.
|
FLOAT
float kind.
|
INT
int kind.
|
LIST
value list kind.
|
LONG
long kind.
|
NULL
null kind.
|
SHORT
short kind.
|
STRING
string kind.
|
UNKNOWN
unknown kind.
|
Modifier and Type | Method and Description |
---|---|
static ValueInfo.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueInfo.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueInfo.Kind UNKNOWN
public static final ValueInfo.Kind NULL
public static final ValueInfo.Kind BOOLEAN
public static final ValueInfo.Kind BYTE
public static final ValueInfo.Kind SHORT
public static final ValueInfo.Kind INT
public static final ValueInfo.Kind LONG
public static final ValueInfo.Kind FLOAT
public static final ValueInfo.Kind DOUBLE
public static final ValueInfo.Kind CHAR
public static final ValueInfo.Kind STRING
public static final ValueInfo.Kind CLASS
public static final ValueInfo.Kind LIST
public static final ValueInfo.Kind ENUM
public static final ValueInfo.Kind ANNOTATION
public static ValueInfo.Kind[] values()
for (ValueInfo.Kind c : ValueInfo.Kind.values()) System.out.println(c);
public static ValueInfo.Kind 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 © 2011–2019 Asakusa Framework Team. All rights reserved.