org.apache.sling.jcr.contentparser
bundle;
see org.apache.sling.contentparser.api
public enum JsonParserFeature extends Enum<JsonParserFeature>
Enum Constant and Description |
---|
COMMENTS
Deprecated.
Support comments (/* ...
|
QUOTE_TICK
Deprecated.
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)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static JsonParserFeature[] |
values()
Deprecated.
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–2019 The Apache Software Foundation. All rights reserved.