public enum JsonParserFeature extends Enum<JsonParserFeature>
Enum Constant and Description |
---|
COMMENTS
Support comments (/* ...
|
QUOTE_TICK
Support ticks (') additional to double quotes (") as quoting symbol for JSON names and strings.
|
Modifier and Type | Method and Description |
---|---|
static JsonParserFeature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonParserFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonParserFeature COMMENTS
public static final JsonParserFeature QUOTE_TICK
public static JsonParserFeature[] values()
for (JsonParserFeature c : JsonParserFeature.values()) System.out.println(c);
public static JsonParserFeature 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 © 2007–2018 The Apache Software Foundation. All rights reserved.