public enum AlertConditionPriority extends Enum<AlertConditionPriority>
Java class for AlertConditionPriority.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AlertConditionPriority">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Lo"/>
<enumeration value="Me"/>
<enumeration value="Hi"/>
<enumeration value="None"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
HI
Hi = High.
|
LO
Lo = Low.
|
ME
Me = Medium.
|
NONE
No awareness of the ALERT CONDITION is required.
|
| Modifier and Type | Method and Description |
|---|---|
static AlertConditionPriority |
fromValue(String v) |
String |
value() |
static AlertConditionPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlertConditionPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertConditionPriority LO
public static final AlertConditionPriority ME
public static final AlertConditionPriority HI
public static final AlertConditionPriority NONE
public static AlertConditionPriority[] values()
for (AlertConditionPriority c : AlertConditionPriority.values()) System.out.println(c);
public static AlertConditionPriority 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 AlertConditionPriority fromValue(String v)
Copyright © 2017. All rights reserved.