org.jclouds.ultradns.ws.domain
Enum Zone.DNSSECStatus

java.lang.Object
  extended by java.lang.Enum<Zone.DNSSECStatus>
      extended by 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
SIGNED
           
UNRECOGNIZED
           
UNSIGNED
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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 name
NullPointerException - if the argument is null

fromValue

public static Zone.DNSSECStatus fromValue(String status)


Copyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.