public static enum Constant.Kind extends java.lang.Enum<Constant.Kind>
| Enum Constant and Description |
|---|
BIG_INTEGER
A big integer.
|
CHARACTER
A character.
|
DOUBLE
A double.
|
INTEGER
An integer.
|
REFERENCE
A reference.
|
STRING
A string.
|
| Modifier and Type | Method and Description |
|---|---|
static Constant.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constant.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constant.Kind INTEGER
public static final Constant.Kind BIG_INTEGER
public static final Constant.Kind DOUBLE
public static final Constant.Kind CHARACTER
public static final Constant.Kind STRING
public static final Constant.Kind REFERENCE
public static Constant.Kind[] values()
for (Constant.Kind c : Constant.Kind.values()) System.out.println(c);
public static Constant.Kind 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 nullCopyright © 2014. All Rights Reserved.