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