public enum ValueKind extends Enum<ValueKind> implements Kind
| Enum Constant and Description |
|---|
BOOLEAN |
ENUM |
FLOAT |
INT |
LIST |
NULL |
OBJECT |
STRING |
VARIABLE |
| Modifier and Type | Method and Description |
|---|---|
static ValueKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueKind NULL
public static final ValueKind FLOAT
public static final ValueKind OBJECT
public static final ValueKind LIST
public static final ValueKind INT
public static final ValueKind ENUM
public static final ValueKind STRING
public static final ValueKind BOOLEAN
public static final ValueKind VARIABLE
public static ValueKind[] values()
for (ValueKind c : ValueKind.values()) System.out.println(c);
public static ValueKind 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 © 2018. All rights reserved.