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