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