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