public static enum JsonNode.Type extends Enum<JsonNode.Type>
JsonNode types.| Enum Constant and Description |
|---|
ARRAY |
BOOLEAN |
DOUBLE |
LONG |
NULL |
OBJECT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static JsonNode.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonNode.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonNode.Type OBJECT
public static final JsonNode.Type ARRAY
public static final JsonNode.Type STRING
public static final JsonNode.Type LONG
public static final JsonNode.Type DOUBLE
public static final JsonNode.Type BOOLEAN
public static final JsonNode.Type NULL
public static JsonNode.Type[] values()
for (JsonNode.Type c : JsonNode.Type.values()) System.out.println(c);
public static JsonNode.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 nameNullPointerException - if the argument is nullCopyright © 2018 WSO2. All rights reserved.