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