|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Value.TYPE>
cc.plural.jsonij.Value.TYPE
public static enum Value.TYPE
Type enumeration.
| Enum Constant Summary | |
|---|---|
ARRAY
ARRAY used to denote JSON Array Types. |
|
FALSE
False used to denote JSON False Types. |
|
NULL
Null used to denote JSON Null Types. |
|
NUMERIC
NUMERIC used to denote JSON Numeric Types. |
|
OBJECT
OBJECT used to denote JSON Object Types. |
|
STRING
STRING used to denote JSON String Types. |
|
TRUE
TRUE used to denote JSON True Types. |
|
| Method Summary | |
|---|---|
static Value.TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Value.TYPE[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Value.TYPE OBJECT
public static final Value.TYPE ARRAY
public static final Value.TYPE STRING
public static final Value.TYPE NUMERIC
public static final Value.TYPE TRUE
public static final Value.TYPE FALSE
public static final Value.TYPE NULL
| Method Detail |
|---|
public static final Value.TYPE[] values()
for(Value.TYPE c : Value.TYPE.values())
System.out.println(c);
public static Value.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 name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||