org.javasimon.SimonState Maven / Gradle / Ivy
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,
}