public enum EnumCM_VascularMorphology extends java.lang.Enum<EnumCM_VascularMorphology>
| Enum Constant and Description |
|---|
ANEURYSM |
ANGIOMA |
ARTERIAL_DISSECTION |
ARTERIOVENOUS_FISTULA |
DILATATION |
DIVERTICULUM |
EMBOLISM |
FIBROMUSCULAR_DYSPLASIA |
OCCLUSION |
PLAQUE |
PSEUDOANEURYSM |
STENOSIS |
STENT |
THROMBOSIS |
TORTUOSITY |
VASCULAR_COILING |
VASCULAR_SCLEROSIS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_VascularMorphology |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_VascularMorphology[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_VascularMorphology PLAQUE
public static final EnumCM_VascularMorphology STENOSIS
public static final EnumCM_VascularMorphology ANEURYSM
public static final EnumCM_VascularMorphology ARTERIAL_DISSECTION
public static final EnumCM_VascularMorphology STENT
public static final EnumCM_VascularMorphology OCCLUSION
public static final EnumCM_VascularMorphology ARTERIOVENOUS_FISTULA
public static final EnumCM_VascularMorphology ANGIOMA
public static final EnumCM_VascularMorphology DILATATION
public static final EnumCM_VascularMorphology VASCULAR_COILING
public static final EnumCM_VascularMorphology TORTUOSITY
public static final EnumCM_VascularMorphology DIVERTICULUM
public static final EnumCM_VascularMorphology VASCULAR_SCLEROSIS
public static final EnumCM_VascularMorphology THROMBOSIS
public static final EnumCM_VascularMorphology PSEUDOANEURYSM
public static final EnumCM_VascularMorphology EMBOLISM
public static final EnumCM_VascularMorphology FIBROMUSCULAR_DYSPLASIA
public static EnumCM_VascularMorphology[] values()
for (EnumCM_VascularMorphology c : EnumCM_VascularMorphology.values()) System.out.println(c);
public static EnumCM_VascularMorphology 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()