public static enum TableModify.Operation extends Enum<TableModify.Operation>
| Modifier and Type | Method and Description |
|---|---|
static TableModify.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableModify.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableModify.Operation INSERT
public static final TableModify.Operation UPDATE
public static final TableModify.Operation DELETE
public static final TableModify.Operation MERGE
public static TableModify.Operation[] values()
for (TableModify.Operation c : TableModify.Operation.values()) System.out.println(c);
public static TableModify.Operation 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 © 2012–2015 The Apache Software Foundation. All rights reserved.