public static enum RMJSONNode.Type extends java.lang.Enum<RMJSONNode.Type>
Enum Constant and Description |
---|
Boolean |
List |
Map |
Null |
Number |
String |
Modifier and Type | Method and Description |
---|---|
static RMJSONNode.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RMJSONNode.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RMJSONNode.Type Map
public static final RMJSONNode.Type List
public static final RMJSONNode.Type String
public static final RMJSONNode.Type Number
public static final RMJSONNode.Type Boolean
public static final RMJSONNode.Type Null
public static RMJSONNode.Type[] values()
for (RMJSONNode.Type c : RMJSONNode.Type.values()) System.out.println(c);
public static RMJSONNode.Type 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