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