public enum ConfigSyntax extends java.lang.Enum<ConfigSyntax>
Enum Constant and Description |
---|
CONF
The JSON-superset HOCON format.
|
JSON
Pedantically strict JSON format; no
comments, no unexpected commas, no duplicate keys in the same object.
|
PROPERTIES
Standard Java properties format.
|
Modifier and Type | Method and Description |
---|---|
static ConfigSyntax |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConfigSyntax[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JSON
.json
file extension and
application/json
Content-Type.public static final CONF
.conf
file extension
and application/hocon
Content-Type.public static final PROPERTIES
.properties
file extension and text/x-java-properties
Content-Type.public static values()
for (ConfigSyntax c : ConfigSyntax.values()) System.out.println(c);
public static 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