public enum ConfigSyntax extends java.lang.Enum<ConfigSyntax>
Enum Constant | 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 | 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 ConfigSyntax JSON
.json
file extension and
application/json
Content-Type.public static final ConfigSyntax CONF
.conf
file extension
and application/hocon
Content-Type.public static final ConfigSyntax PROPERTIES
.properties
file extension and text/x-java-properties
Content-Type.public static ConfigSyntax[] values()
for (ConfigSyntax c : ConfigSyntax.values()) System.out.println(c);
public static ConfigSyntax 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