Uses of Class
oracle.nosql.driver.Version
-
Packages that use Version Package Description oracle.nosql.driver Contains the public API for using the Oracle NoSQL Database as well as configuration and common parameter classes used in database operations.oracle.nosql.driver.ops Contains the input and response classes used for Oracle NoSQL Database operations.oracle.nosql.driver.ops.serde -
-
Uses of Version in oracle.nosql.driver
Methods in oracle.nosql.driver that return Version Modifier and Type Method Description static VersionVersion. createVersion(byte[] version)Creates a Version instance from a byte[] which may have been acquired from a query using the row_version() function which returns a FieldValue of type BINARY. -
Uses of Version in oracle.nosql.driver.ops
Methods in oracle.nosql.driver.ops that return Version Modifier and Type Method Description VersionDeleteResult. getExistingVersion()Returns the existing rowVersionif available.VersionPutResult. getExistingVersion()Returns the existing rowVersionif available.VersionWriteMultipleResult.OperationResult. getExistingVersion()Returns the existing row version associated with the key if available.VersionDeleteRequest. getMatchVersion()Returns theVersionused for a match on a conditional delete.VersionPutRequest. getMatchVersion()Returns theVersionused for a match on a conditional put.VersionGetResult. getVersion()Returns theVersionof the row if the operation was successful, or null if the row does not exist.VersionPutResult. getVersion()Returns theVersionof the new row if the operation was successful.VersionWriteMultipleResult.OperationResult. getVersion()Returns the version of the new row for put operation, or null if put operations did not succeed or the operation is delete operation.Methods in oracle.nosql.driver.ops with parameters of type Version Modifier and Type Method Description DeleteRequestDeleteRequest. setMatchVersion(Version version)Sets theVersionto use for a conditional delete operation.PutRequestPutRequest. setMatchVersion(Version version)Sets theVersionto use for a conditional put operation. -
Uses of Version in oracle.nosql.driver.ops.serde
Methods in oracle.nosql.driver.ops.serde with parameters of type Version Modifier and Type Method Description static voidBinaryProtocol. writeVersion(oracle.nosql.driver.util.ByteOutputStream out, Version version)
-