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