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