Enum AlertConditionKind
- java.lang.Object
-
- java.lang.Enum<AlertConditionKind>
-
- org.somda.sdc.biceps.model.participant.AlertConditionKind
-
- All Implemented Interfaces:
Serializable,Comparable<AlertConditionKind>
public enum AlertConditionKind extends Enum<AlertConditionKind>
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>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AlertConditionKindfromValue(String v)Stringvalue()static AlertConditionKindvalueOf(String name)Returns the enum constant of this type with the specified name.static AlertConditionKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PHY
public static final AlertConditionKind PHY
Phy = Physiological. The condition arises from a patient-related variable. Examples: "blood pressure high" or "minute volume low".
-
TEC
public static final AlertConditionKind TEC
Tec = Technical. The condition arises from a monitored equipment-related or ALERT SYSTEM-related variable. Examples: "battery low" or "sensor unplugged".
-
OTH
public static final AlertConditionKind OTH
Oth = Other. The condition arises from another origin, e.g., equipment-user advisory conditions like "room temperature high".
-
-
Method Detail
-
values
public static AlertConditionKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AlertConditionKind c : AlertConditionKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlertConditionKind valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static AlertConditionKind fromValue(String v)
-
-