public enum EnumRespiratoryCyclePosition extends java.lang.Enum<EnumRespiratoryCyclePosition>
| Enum Constant and Description |
|---|
END_RESPIR
The END_RESPIR.
|
START_RESPIR
The START _RESPIR.
|
UNDETERMINED
The UNDETERMINED.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumRespiratoryCyclePosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumRespiratoryCyclePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumRespiratoryCyclePosition START_RESPIR
public static final EnumRespiratoryCyclePosition END_RESPIR
public static final EnumRespiratoryCyclePosition UNDETERMINED
public static EnumRespiratoryCyclePosition[] values()
for (EnumRespiratoryCyclePosition c : EnumRespiratoryCyclePosition.values()) System.out.println(c);
public static EnumRespiratoryCyclePosition 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 getValue()