public enum EnumCM_LesionSegmentationTypes extends java.lang.Enum<EnumCM_LesionSegmentationTypes>
| Enum Constant and Description |
|---|
ABSCESS |
BLOOD_CLOT |
CYST |
EDEMA |
EMBOLUS |
HEMORRHAGE |
INFLAMMATION |
MASS |
NECROSIS |
NEOPLASM |
NEOPLASM_PRIMARY |
NEOPLASM_SECONDARY |
NODULE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_LesionSegmentationTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_LesionSegmentationTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_LesionSegmentationTypes ABSCESS
public static final EnumCM_LesionSegmentationTypes BLOOD_CLOT
public static final EnumCM_LesionSegmentationTypes CYST
public static final EnumCM_LesionSegmentationTypes EDEMA
public static final EnumCM_LesionSegmentationTypes EMBOLUS
public static final EnumCM_LesionSegmentationTypes HEMORRHAGE
public static final EnumCM_LesionSegmentationTypes INFLAMMATION
public static final EnumCM_LesionSegmentationTypes MASS
public static final EnumCM_LesionSegmentationTypes NECROSIS
public static final EnumCM_LesionSegmentationTypes NEOPLASM
public static final EnumCM_LesionSegmentationTypes NEOPLASM_PRIMARY
public static final EnumCM_LesionSegmentationTypes NEOPLASM_SECONDARY
public static final EnumCM_LesionSegmentationTypes NODULE
public static EnumCM_LesionSegmentationTypes[] values()
for (EnumCM_LesionSegmentationTypes c : EnumCM_LesionSegmentationTypes.values()) System.out.println(c);
public static EnumCM_LesionSegmentationTypes 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()