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