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