public enum EnumCM_CathPatientCharacteristics extends java.lang.Enum<EnumCM_CathPatientCharacteristics>
| Enum Constant and Description |
|---|
BODY_MASS_INDEX |
BODY_SURFACE_AREA |
BODY_SURFACE_AREA_FORMULA |
EQUATION |
PATIENT_CHARACTERISTICS |
PATIENT_HEIGHT |
PATIENT_WEIGHT |
SUBJECT_AGE |
SUBJECT_SEX |
THORAX_DIAMETER_SAGITTAL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_CathPatientCharacteristics |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_CathPatientCharacteristics[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_CathPatientCharacteristics PATIENT_CHARACTERISTICS
public static final EnumCM_CathPatientCharacteristics SUBJECT_AGE
public static final EnumCM_CathPatientCharacteristics SUBJECT_SEX
public static final EnumCM_CathPatientCharacteristics PATIENT_HEIGHT
public static final EnumCM_CathPatientCharacteristics PATIENT_WEIGHT
public static final EnumCM_CathPatientCharacteristics THORAX_DIAMETER_SAGITTAL
public static final EnumCM_CathPatientCharacteristics BODY_SURFACE_AREA
public static final EnumCM_CathPatientCharacteristics BODY_SURFACE_AREA_FORMULA
public static final EnumCM_CathPatientCharacteristics BODY_MASS_INDEX
public static final EnumCM_CathPatientCharacteristics EQUATION
public static EnumCM_CathPatientCharacteristics[] values()
for (EnumCM_CathPatientCharacteristics c : EnumCM_CathPatientCharacteristics.values()) System.out.println(c);
public static EnumCM_CathPatientCharacteristics 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()