java.io.Serializable, java.lang.Comparable<TableOperation.Type>public static enum TableOperation.Type extends java.lang.Enum<TableOperation.Type>
| Enum Constant | Description |
|---|---|
DELETE |
|
DELETE_IF_VERSION |
|
PUT |
An operation created by
TableOperationFactory.createPut(oracle.kv.table.Row, oracle.kv.table.ReturnRow.Choice, boolean). |
PUT_IF_ABSENT |
|
PUT_IF_PRESENT |
|
PUT_IF_VERSION |
| Modifier and Type | Method | Description |
|---|---|---|
static TableOperation.Type |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static TableOperation.Type[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableOperation.Type PUT
TableOperationFactory.createPut(oracle.kv.table.Row, oracle.kv.table.ReturnRow.Choice, boolean).public static final TableOperation.Type PUT_IF_ABSENT
public static final TableOperation.Type PUT_IF_PRESENT
public static final TableOperation.Type PUT_IF_VERSION
public static final TableOperation.Type DELETE
public static final TableOperation.Type DELETE_IF_VERSION
public static TableOperation.Type[] values()
for (TableOperation.Type c : TableOperation.Type.values()) System.out.println(c);
public static TableOperation.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright (c) 2011, 2018 Oracle and/or its affiliates. All rights reserved.