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"

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).

trait Enum
trait Product
trait Equals
class Enum[ConfigSyntax]
trait Serializable
trait Comparable[ConfigSyntax]
class Object
trait Matchable
class Any

Type members

Enum entries

case CONF extends ConfigSyntax

The JSON-superset <a href="https://github.com/lightbend/config/blob/master/HOCON.md"

The JSON-superset <a href="https://github.com/lightbend/config/blob/master/HOCON.md"

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

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.

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.