Package org.seamcat.model.plugin.system
Enum LocalEnvironmentUI.Environment
- java.lang.Object
-
- java.lang.Enum<LocalEnvironmentUI.Environment>
-
- org.seamcat.model.plugin.system.LocalEnvironmentUI.Environment
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LocalEnvironmentUI.Environment>
- Enclosing interface:
- LocalEnvironmentUI
public static enum LocalEnvironmentUI.Environment extends java.lang.Enum<LocalEnvironmentUI.Environment>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LocalEnvironmentUI.Environment
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LocalEnvironmentUI.Environment[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Indoor
public static final LocalEnvironmentUI.Environment Indoor
-
Outdoor
public static final LocalEnvironmentUI.Environment Outdoor
-
-
Method Detail
-
values
public static LocalEnvironmentUI.Environment[] 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 (LocalEnvironmentUI.Environment c : LocalEnvironmentUI.Environment.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LocalEnvironmentUI.Environment valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-