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