public static enum CustomValue.CvType extends Enum<CustomValue.CvType>
| Enum Constant and Description |
|---|
ARRAY |
BOOLEAN |
NULL |
NUMBER |
OBJECT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static CustomValue.CvType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomValue.CvType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomValue.CvType OBJECT
public static final CustomValue.CvType ARRAY
public static final CustomValue.CvType STRING
public static final CustomValue.CvType NUMBER
public static final CustomValue.CvType BOOLEAN
public static final CustomValue.CvType NULL
public static CustomValue.CvType[] values()
for (CustomValue.CvType c : CustomValue.CvType.values()) System.out.println(c);
public static CustomValue.CvType 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 null