public enum JsonValueTypes extends Enum<JsonValueTypes>
| Enum Constant and Description |
|---|
BOOLEAN |
DEFAULT |
DOUBLE_QUOTED_STRING |
NULL |
NUMBER |
SINGLE_QUOTED_STRING |
SYMBOL |
| Modifier and Type | Method and Description |
|---|---|
String |
getQuoteChar() |
static JsonValueTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonValueTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonValueTypes SINGLE_QUOTED_STRING
public static final JsonValueTypes DOUBLE_QUOTED_STRING
public static final JsonValueTypes SYMBOL
public static final JsonValueTypes NUMBER
public static final JsonValueTypes BOOLEAN
public static final JsonValueTypes NULL
public static final JsonValueTypes DEFAULT
public static JsonValueTypes[] values()
for (JsonValueTypes c : JsonValueTypes.values()) System.out.println(c);
public static JsonValueTypes 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 nullpublic String getQuoteChar()
Copyright © 2022. All rights reserved.