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