public enum LimitAlertObservationState extends java.lang.Enum<LimitAlertObservationState>
Java-Klasse für MonitoredAlertLimits.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="MonitoredAlertLimits">
<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_OFF
No AlertLimits are monitored.
|
ALL_ON
Both AlertLimits are monitored.
|
HIGH_OFF
HiOff = Hi-Off.
|
LOW_OFF
LoOff = Low-Off.
|
| Modifier and Type | Method and Description |
|---|---|
static LimitAlertObservationState |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static LimitAlertObservationState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LimitAlertObservationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LimitAlertObservationState ALL_ON
public static final LimitAlertObservationState LOW_OFF
public static final LimitAlertObservationState HIGH_OFF
public static final LimitAlertObservationState ALL_OFF
public static LimitAlertObservationState[] values()
for (LimitAlertObservationState c : LimitAlertObservationState.values()) System.out.println(c);
public static LimitAlertObservationState 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 LimitAlertObservationState fromValue(java.lang.String v)