public enum EnumCM_CoronaryVeins extends java.lang.Enum<EnumCM_CoronaryVeins>
| Enum Constant and Description |
|---|
ANTERIOR_CARDIAC_VEIN |
ATRIAL_VEIN |
ATRIOVENTRICULAR_VEIN |
AZYGOS_VEIN |
CORONARY_SINUS |
GREAT_CARDIAC_VEIN |
MIDDLE_CARDIAC_VEIN |
SMALL_CARDIAC_VEIN |
SMALLEST_CARDIAC_VEIN |
VENTRICULAR_VEIN |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_CoronaryVeins |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_CoronaryVeins[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_CoronaryVeins AZYGOS_VEIN
public static final EnumCM_CoronaryVeins CORONARY_SINUS
public static final EnumCM_CoronaryVeins GREAT_CARDIAC_VEIN
public static final EnumCM_CoronaryVeins SMALL_CARDIAC_VEIN
public static final EnumCM_CoronaryVeins ANTERIOR_CARDIAC_VEIN
public static final EnumCM_CoronaryVeins ATRIAL_VEIN
public static final EnumCM_CoronaryVeins ATRIOVENTRICULAR_VEIN
public static final EnumCM_CoronaryVeins MIDDLE_CARDIAC_VEIN
public static final EnumCM_CoronaryVeins VENTRICULAR_VEIN
public static final EnumCM_CoronaryVeins SMALLEST_CARDIAC_VEIN
public static EnumCM_CoronaryVeins[] values()
for (EnumCM_CoronaryVeins c : EnumCM_CoronaryVeins.values()) System.out.println(c);
public static EnumCM_CoronaryVeins 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()