public enum AlertConditionMonitoredLimits extends java.lang.Enum<AlertConditionMonitoredLimits>
Java class for AlertConditionMonitoredLimits.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AlertConditionMonitoredLimits">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="All"/>
<enumeration value="LoOff"/>
<enumeration value="HiOff"/>
<enumeration value="None"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALL
Both alert limits are monitored.
|
HI_OFF
HiOff = Hi-Off.
|
LO_OFF
LoOff = Low-Off.
|
NONE
No alert limits are monitored.
|
| Modifier and Type | Method and Description |
|---|---|
static AlertConditionMonitoredLimits |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static AlertConditionMonitoredLimits |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlertConditionMonitoredLimits[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertConditionMonitoredLimits ALL
public static final AlertConditionMonitoredLimits LO_OFF
public static final AlertConditionMonitoredLimits HI_OFF
public static final AlertConditionMonitoredLimits NONE
public static AlertConditionMonitoredLimits[] values()
for (AlertConditionMonitoredLimits c : AlertConditionMonitoredLimits.values()) System.out.println(c);
public static AlertConditionMonitoredLimits valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String value()
public static AlertConditionMonitoredLimits fromValue(java.lang.String v)