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

org.javasimon.SimonState Maven / Gradle / Ivy

There is a newer version: 4.2.0
Show newest version
package org.javasimon;

/**
 * Status of monitor. While effective state can be either enabled or disabled, inner
 * state of monitor accepts one additional state - INHERIT, which means that effective
 * state will be inherited recursively from the parent.
 *
 * @author Richard "Virgo" Richter
 */
public enum SimonState {

	/** Enabled. */
	ENABLED,

	/** Disabled. */
	DISABLED,

	/** Effective state (enabled/disabled) is going to be derived from the parent. */
	INHERIT,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy