Enum EPPMaintenanceItem.Environment
- java.lang.Object
-
- java.lang.Enum<EPPMaintenanceItem.Environment>
-
- com.verisign.epp.codec.maintenance.v1_0.EPPMaintenanceItem.Environment
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EPPMaintenanceItem.Environment>
- Enclosing class:
- EPPMaintenanceItem
public static enum EPPMaintenanceItem.Environment extends java.lang.Enum<EPPMaintenanceItem.Environment>
Environment enumerated values.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description custom
dev
ote
production
staging
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EPPMaintenanceItem.Environment
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EPPMaintenanceItem.Environment[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
production
public static final EPPMaintenanceItem.Environment production
-
ote
public static final EPPMaintenanceItem.Environment ote
-
staging
public static final EPPMaintenanceItem.Environment staging
-
dev
public static final EPPMaintenanceItem.Environment dev
-
custom
public static final EPPMaintenanceItem.Environment custom
-
-
Method Detail
-
values
public static EPPMaintenanceItem.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 (EPPMaintenanceItem.Environment c : EPPMaintenanceItem.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 EPPMaintenanceItem.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
-
-