Package ome.xml.model.enums
Enum Immersion
- java.lang.Object
-
- java.lang.Enum<Immersion>
-
- ome.xml.model.enums.Immersion
-
- All Implemented Interfaces:
Serializable
,Comparable<Immersion>
,Enumeration
public enum Immersion extends Enum<Immersion> implements Enumeration
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
OIL
public static final Immersion OIL
-
WATER
public static final Immersion WATER
-
WATERDIPPING
public static final Immersion WATERDIPPING
-
AIR
public static final Immersion AIR
-
MULTI
public static final Immersion MULTI
-
GLYCEROL
public static final Immersion GLYCEROL
-
OTHER
public static final Immersion OTHER
-
-
Method Detail
-
values
public static Immersion[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Immersion c : Immersion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Immersion valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromString
public static Immersion fromString(String value) throws EnumerationException
- Throws:
EnumerationException
-
getValue
public String getValue()
-
-