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