public enum ECSOperations extends Enum<ECSOperations>
| Enum Constant and Description |
|---|
createCluster |
deleteCluster |
describeCluster |
listClusters |
| Modifier and Type | Method and Description |
|---|---|
static ECSOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ECSOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECSOperations listClusters
public static final ECSOperations describeCluster
public static final ECSOperations createCluster
public static final ECSOperations deleteCluster
public static ECSOperations[] values()
for (ECSOperations c : ECSOperations.values()) System.out.println(c);
public static ECSOperations 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 nullApache Camel