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