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