com.crashnote.core.config.helper.ConfigSyntax Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crashnote-servlet Show documentation
Show all versions of crashnote-servlet Show documentation
Reports exceptions from Java servlet apps to crashnote.com
/**
* Copyright (C) 2011-2012 Typesafe Inc.
*/
package com.crashnote.core.config.helper;
/**
* 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