public enum FilterType extends Enum<FilterType> implements Enumeration
Enum Constant and Description |
---|
BANDPASS |
DICHROIC |
LONGPASS |
MULTIPASS |
NEUTRALDENSITY |
OTHER |
SHORTPASS |
TUNEABLE |
Modifier and Type | Method and Description |
---|---|
static FilterType |
fromString(String value) |
String |
getValue() |
String |
toString() |
static FilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterType DICHROIC
public static final FilterType LONGPASS
public static final FilterType SHORTPASS
public static final FilterType BANDPASS
public static final FilterType MULTIPASS
public static final FilterType NEUTRALDENSITY
public static final FilterType TUNEABLE
public static final FilterType OTHER
public static FilterType[] values()
for (FilterType c : FilterType.values()) System.out.println(c);
public static FilterType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static FilterType fromString(String value) throws EnumerationException
EnumerationException
public String getValue()
public String toString()
toString
in class Enum<FilterType>
Copyright © 2014 Open Microscopy Environment