public static enum ImaJson.JObject extends Enum<ImaJson.JObject>
Enum Constant and Description |
---|
Array
JSON array, count is number of entries
|
False
JSON false, value is not set
|
Integer
A number with no decimal point.
|
Null
JSON null, value is not set
|
Number
Number which is too big or has a fractional part
|
Object
JSON object, count is number of entries
|
String
JSON string, value is UTF-8
|
True
JSON true, value is not set
|
Modifier and Type | Method and Description |
---|---|
static ImaJson.JObject |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImaJson.JObject[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImaJson.JObject String
public static final ImaJson.JObject Integer
public static final ImaJson.JObject Number
public static final ImaJson.JObject Object
public static final ImaJson.JObject Array
public static final ImaJson.JObject True
public static final ImaJson.JObject False
public static final ImaJson.JObject Null
public static ImaJson.JObject[] values()
for (ImaJson.JObject c : ImaJson.JObject.values()) System.out.println(c);
public static ImaJson.JObject 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 © IBM Corp. 2014. All Rights Reserved.