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