All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.deephacks.tools4j.config.internal.core.runtime.typesafe.ConfigSyntax Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
/**
 *   Copyright (C) 2011-2012 Typesafe Inc. 
 */
package org.deephacks.tools4j.config.internal.core.runtime.typesafe;

/**
 * The syntax of a character stream, JSON, HOCON
 * aka ".conf", or Java properties.
 *
 */
public enum ConfigSyntax {
    /**
     * Pedantically strict JSON format; no
     * comments, no unexpected commas, no duplicate keys in the same object.
     */
    JSON,
    /**
     * The JSON-superset HOCON format.
     */
    CONF,
    /**
     * Standard Java properties format.
     */
    PROPERTIES;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy