public enum Immersion extends Enum<Immersion> implements Enumeration
Enum Constant and Description |
---|
AIR |
GLYCEROL |
MULTI |
OIL |
OTHER |
WATER |
WATERDIPPING |
Modifier and Type | Method and Description |
---|---|
static Immersion |
fromString(String value) |
String |
getValue() |
String |
toString() |
static Immersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Immersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Immersion OIL
public static final Immersion WATER
public static final Immersion WATERDIPPING
public static final Immersion AIR
public static final Immersion MULTI
public static final Immersion GLYCEROL
public static final Immersion OTHER
private final String value
public static Immersion[] values()
for (Immersion c : Immersion.values()) System.out.println(c);
public static Immersion 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 Immersion fromString(String value) throws EnumerationException
EnumerationException
public String getValue()
Copyright © 2016 Open Microscopy Environment