Package org.jclouds.ultradns.ws.domain
Enum Zone.DNSSECStatus
- java.lang.Object
-
- java.lang.Enum<Zone.DNSSECStatus>
-
- org.jclouds.ultradns.ws.domain.Zone.DNSSECStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<Zone.DNSSECStatus>
- Enclosing class:
- Zone
public static enum Zone.DNSSECStatus extends Enum<Zone.DNSSECStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SIGNED
UNRECOGNIZED
UNSIGNED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Zone.DNSSECStatus
fromValue(String status)
static Zone.DNSSECStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static Zone.DNSSECStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SIGNED
public static final Zone.DNSSECStatus SIGNED
-
UNSIGNED
public static final Zone.DNSSECStatus UNSIGNED
-
UNRECOGNIZED
public static final Zone.DNSSECStatus UNRECOGNIZED
-
-
Method Detail
-
values
public static Zone.DNSSECStatus[] 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 (Zone.DNSSECStatus c : Zone.DNSSECStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Zone.DNSSECStatus 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
-
fromValue
public static Zone.DNSSECStatus fromValue(String status)
-
-