public static enum ComputeTask.Action extends Enum<ComputeTask.Action>
Enum Constant and Description |
---|
CREATE |
DESTROY |
GET |
LIST |
LIST_DETAILS |
LIST_IMAGES |
LIST_LOCATIONS |
LIST_SIZES |
REBOOT |
Modifier and Type | Method and Description |
---|---|
static ComputeTask.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComputeTask.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComputeTask.Action CREATE
public static final ComputeTask.Action GET
public static final ComputeTask.Action LIST
public static final ComputeTask.Action LIST_DETAILS
public static final ComputeTask.Action DESTROY
public static final ComputeTask.Action REBOOT
public static final ComputeTask.Action LIST_IMAGES
public static final ComputeTask.Action LIST_SIZES
public static final ComputeTask.Action LIST_LOCATIONS
public static ComputeTask.Action[] values()
for (ComputeTask.Action c : ComputeTask.Action.values()) System.out.println(c);
public static ComputeTask.Action 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 nullCopyright © 2009-2012 jclouds. All Rights Reserved.