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