public static enum HostedService.Status extends Enum<HostedService.Status>
| Enum Constant and Description |
|---|
CHANGING |
CREATED |
CREATING |
DELETED |
DELETING |
RESOLVING_DNS |
UNRECOGNIZED |
| Modifier and Type | Method and Description |
|---|---|
static HostedService.Status |
fromValue(String status) |
String |
toString() |
String |
value() |
static HostedService.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HostedService.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HostedService.Status CREATING
public static final HostedService.Status CREATED
public static final HostedService.Status DELETING
public static final HostedService.Status DELETED
public static final HostedService.Status CHANGING
public static final HostedService.Status RESOLVING_DNS
public static final HostedService.Status UNRECOGNIZED
public static HostedService.Status[] values()
for (HostedService.Status c : HostedService.Status.values()) System.out.println(c);
public static HostedService.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 String value()
public String toString()
toString in class Enum<HostedService.Status>public static HostedService.Status fromValue(String status)
Copyright © 2009-2013 jclouds. All Rights Reserved.