public static enum ImaJson.JObject extends Enum<ImaJson.JObject>
Enum Constant and Description |
---|
JsonArray
JSON array, count is number of entries
|
JsonFalse
JSON false, value is not set
|
JsonInteger
A number with no decimal point.
|
JsonNull
JSON null, value is not set
|
JsonNumber
Number which is too big or has a fractional part
|
JsonObject
JSON object, count is number of entries
|
JsonString
JSON string, value is UTF-8
|
JsonTrue
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 JsonString
public static final ImaJson.JObject JsonInteger
public static final ImaJson.JObject JsonNumber
public static final ImaJson.JObject JsonObject
public static final ImaJson.JObject JsonArray
public static final ImaJson.JObject JsonTrue
public static final ImaJson.JObject JsonFalse
public static final ImaJson.JObject JsonNull
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 © Contributors to the Eclipse Foundation 2014-2021