public interface Version
Modifier and Type | Field and Description |
---|---|
static Version |
NO_VERSION
Version that indicates no specific version is desired. |
static Version |
NOT_EXISTS
|
Modifier and Type | Method and Description |
---|---|
io.pravega.client.tables.impl.VersionImpl |
asImpl()
Returns the actual instance.
|
static Version |
fromString(java.lang.String str)
Deserializes the
Version from its serialized form obtained from calling toString() . |
java.lang.String |
toString()
Serializes the
Version to a human readable string. |
static final Version NO_VERSION
Version
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.static final Version NOT_EXISTS
Version
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.io.pravega.client.tables.impl.VersionImpl asImpl()
Version
interface.java.lang.String toString()
Version
to a human readable string.toString
in class java.lang.Object
Version
.static Version fromString(java.lang.String str)
Version
from its serialized form obtained from calling toString()
.