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