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