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