public enum LimitAlertObservationState extends Enum<LimitAlertObservationState>
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_OFF
No alert limits are monitored.
|
ALL_ON
Both alert limits are monitored.
|
HIGH_OFF
HiOff = Hi-Off.
|
LOW_OFF
LoOff = Low-Off.
|
| Modifier and Type | Method and Description |
|---|---|
static LimitAlertObservationState |
fromValue(String v) |
String |
value() |
static LimitAlertObservationState |
valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static LimitAlertObservationState fromValue(String v)
Copyright © 2017. All rights reserved.