public enum EnumCM_PatientOrientationModifier extends java.lang.Enum<EnumCM_PatientOrientationModifier>
| Enum Constant and Description |
|---|
ANATOMICAL |
CURLED_UP |
FROG |
INVERSE_TRENDELENBURG |
KNEE_CHEST |
KNEELING |
LATERAL_DECUBITUS |
LEFT_LATERAL_DECUBITUS |
LITHOTOMY |
LORDOTIC |
PRONE |
RIGHT_LATERAL_DECUBITUS |
SEMI_PRONE |
SITTING |
STANDING |
STOOPED_OVER |
SUPINE |
TRENDELENBURG |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_PatientOrientationModifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_PatientOrientationModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_PatientOrientationModifier PRONE
public static final EnumCM_PatientOrientationModifier SEMI_PRONE
public static final EnumCM_PatientOrientationModifier LATERAL_DECUBITUS
public static final EnumCM_PatientOrientationModifier STANDING
public static final EnumCM_PatientOrientationModifier ANATOMICAL
public static final EnumCM_PatientOrientationModifier KNEELING
public static final EnumCM_PatientOrientationModifier KNEE_CHEST
public static final EnumCM_PatientOrientationModifier SUPINE
public static final EnumCM_PatientOrientationModifier LITHOTOMY
public static final EnumCM_PatientOrientationModifier TRENDELENBURG
public static final EnumCM_PatientOrientationModifier INVERSE_TRENDELENBURG
public static final EnumCM_PatientOrientationModifier FROG
public static final EnumCM_PatientOrientationModifier STOOPED_OVER
public static final EnumCM_PatientOrientationModifier SITTING
public static final EnumCM_PatientOrientationModifier CURLED_UP
public static final EnumCM_PatientOrientationModifier RIGHT_LATERAL_DECUBITUS
public static final EnumCM_PatientOrientationModifier LEFT_LATERAL_DECUBITUS
public static final EnumCM_PatientOrientationModifier LORDOTIC
public static EnumCM_PatientOrientationModifier[] values()
for (EnumCM_PatientOrientationModifier c : EnumCM_PatientOrientationModifier.values()) System.out.println(c);
public static EnumCM_PatientOrientationModifier 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()