ConfigSyntax

org.ekrich.config.ConfigSyntax
enum ConfigSyntax extends Enum[ConfigSyntax]

The syntax of a character stream (JSON, HOCON aka ".conf", or <a href= "http://download.oracle.com/javase/7/docs/api/java/util/Properties.html#load%28java.io.Reader%29"

Java properties).

Attributes

Graph
Supertypes
trait Enum
trait Product
trait Equals
class Enum[ConfigSyntax]
trait Serializable
trait Comparable[ConfigSyntax]
trait Constable
class Object
trait Matchable
class Any
Show all

Members list

Type members

Enum entries

case case CONF extends ConfigSyntax

The JSON-superset HOCON format. Associated with the .conf file extension and application/hocon Content-Type.

The JSON-superset HOCON format. Associated with the .conf file extension and application/hocon Content-Type.

Attributes

case case JSON extends ConfigSyntax

Pedantically strict JSON format; no comments, no unexpected commas, no duplicate keys in the same object. Associated with the .json file extension and application/json Content-Type.

Pedantically strict JSON format; no comments, no unexpected commas, no duplicate keys in the same object. Associated with the .json file extension and application/json Content-Type.

Attributes

case case PROPERTIES extends ConfigSyntax

Standard <a href= "http://download.oracle.com/javase/7/docs/api/java/util/Properties.html#load%28java.io.Reader%29"

Standard <a href= "http://download.oracle.com/javase/7/docs/api/java/util/Properties.html#load%28java.io.Reader%29"

Java properties format. Associated with the .properties file extension and text/x-java-properties Content-Type.

Attributes