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