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