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

org.wildfly.swarm.config.logging.Level Maven / Gradle / Ivy

package org.wildfly.swarm.config.logging;
public enum Level {
	ALL("ALL"), FINEST("FINEST"), FINER("FINER"), TRACE("TRACE"), DEBUG("DEBUG"), FINE(
			"FINE"), CONFIG("CONFIG"), INFO("INFO"), WARN("WARN"), WARNING(
			"WARNING"), ERROR("ERROR"), SEVERE("SEVERE"), FATAL("FATAL"), OFF(
			"OFF");

	private final String allowedValue;

	/**
	 * Returns the allowed value for the management model.
	 * 
	 * @return the allowed model value
	 */
	public String getAllowedValue() {
		return allowedValue;
	}

	Level(java.lang.String allowedValue) {
		this.allowedValue = allowedValue;
	}

	@Override
	public String toString() {
		return allowedValue;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy