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