Package ch.vd.shared.iam.utils
Enum EnvironmentType
- java.lang.Object
-
- java.lang.Enum<EnvironmentType>
-
- ch.vd.shared.iam.utils.EnvironmentType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EnvironmentType>
public enum EnvironmentType extends java.lang.Enum<EnvironmentType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()static EnvironmentTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EnvironmentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LO
public static final EnvironmentType LO
-
CO
public static final EnvironmentType CO
-
CI
public static final EnvironmentType CI
-
UT
public static final EnvironmentType UT
-
IN
public static final EnvironmentType IN
-
VA
public static final EnvironmentType VA
-
PP
public static final EnvironmentType PP
-
PR
public static final EnvironmentType PR
-
DE
public static final EnvironmentType DE
-
PO
public static final EnvironmentType PO
-
I2
public static final EnvironmentType I2
-
-
Method Detail
-
values
public static EnvironmentType[] 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 (EnvironmentType c : EnvironmentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnvironmentType 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
-
getDescription
public java.lang.String getDescription()
-
-