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