public class KeyVersion
extends java.lang.Object
implements java.io.Serializable
Modifier and Type | Field and Description |
---|---|
static KeyVersion |
NO_VERSION
KeyVersion that indicates no specific version is desired. |
static KeyVersion |
NOT_EXISTS
KeyVersion that indicates the TableKey must not exist. |
public static final KeyVersion NO_VERSION
KeyVersion
that indicates no specific version is desired. Using this will result in an unconditional
update or removal being performed. See KeyValueTable
for details on conditional/unconditional updates.public static final KeyVersion NOT_EXISTS
KeyVersion
that indicates the TableKey
must not exist. Using this will result in an conditional
update or removal being performed, conditioned on the TableKey
not existing at the time of the operation.
See KeyValueTable
for details on conditional/unconditional updates.