public enum AlertCondition extends Enum<AlertCondition>
Java class for AlertConditionKind.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AlertConditionKind">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Phy"/>
<enumeration value="Tec"/>
<enumeration value="Oth"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
OTHER
Oth = Other.
|
PHYSIOLOGICAL
Phy = Physiological.
|
TECHNICAL
Tec = Technical.
|
| Modifier and Type | Method and Description |
|---|---|
static AlertCondition |
fromValue(String v) |
String |
value() |
static AlertCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlertCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertCondition PHYSIOLOGICAL
public static final AlertCondition TECHNICAL
public static final AlertCondition OTHER
public static AlertCondition[] values()
for (AlertCondition c : AlertCondition.values()) System.out.println(c);
public static AlertCondition 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 AlertCondition fromValue(String v)
Copyright © 2018. All rights reserved.