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