public static enum RisonParser.Feature extends java.lang.Enum<RisonParser.Feature>
| Enum Constant and Description |
|---|
A_RISON
Whether to assume that the top-level value being encoded is an array,
and therefore to omit the containing '!(' and ')'.
|
O_RISON
Whether to assume that the top-level value being encoded is an object,
and therefore to omit the containing '(' and ')'.
|
| Modifier and Type | Method and Description |
|---|---|
static int |
collectDefaults()
Method that calculates bit set (flags) of all features that
are enabled by default.
|
boolean |
enabledByDefault() |
int |
getMask() |
static RisonParser.Feature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RisonParser.Feature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RisonParser.Feature O_RISON
Default setting is false.
public static final RisonParser.Feature A_RISON
Default setting is false.
public static RisonParser.Feature[] values()
for (RisonParser.Feature c : RisonParser.Feature.values()) System.out.println(c);
public static RisonParser.Feature 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 int collectDefaults()
public boolean enabledByDefault()
public int getMask()
Copyright © 2020. All Rights Reserved.