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