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