public static enum Change.Status extends Enum<Change.Status>
| Enum Constant and Description | 
|---|
INSYNC
indicates that the changes have replicated to all Amazon Route 53 DNS
 servers. 
 | 
PENDING
indicates that the changes in this request have not replicated to all
 Amazon Route 53 DNS servers. 
 | 
UNRECOGNIZED  | 
| Modifier and Type | Method and Description | 
|---|---|
static Change.Status | 
fromValue(String status)  | 
static Change.Status | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Change.Status[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Change.Status PENDING
public static final Change.Status INSYNC
public static final Change.Status UNRECOGNIZED
public static Change.Status[] values()
for (Change.Status c : Change.Status.values()) System.out.println(c);
public static Change.Status valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic static Change.Status fromValue(String status)
Copyright © 2009-2013 jclouds. All Rights Reserved.