public interface TableOperationResult
TableOperationFactory,
execute| Modifier and Type | Method and Description |
|---|---|
Version |
getNewVersion()
For a put operation, the version of the new row.
|
long |
getPreviousExpirationTime()
For a put or delete operation, the previous expiration time
associated with the row.
|
Row |
getPreviousRow()
For a put or delete operation, the previous value associated with
the row.
|
Version |
getPreviousVersion()
For a put or delete operation, the version of the previous row
associated with the key.
|
boolean |
getSuccess()
Whether the operation succeeded.
|
boolean getSuccess()
Version getNewVersion()
Is null if any of the following conditions are true:
Version getPreviousVersion()
Is null if any of the following conditions are true:
prevReturn ReturnRow parameter
specified that the version should not be returned.
putIfVersion
or deleteIfVersion
operation, the matchVersion parameter matched the version of the
previous value.
Row getPreviousRow()
Is null if any of the following conditions are true:
prevReturn ReturnRow parameter
specified that the row should not be returned.
putIfVersion
or deleteIfVersion
operation, the matchVersion parameter matched the version of the
previous value.
long getPreviousExpirationTime()
Is 0 if any of the following conditions are true:
prevReturn ReturnRow parameter
specified that neither the row nor version should be returned.
putIfVersion
or deleteIfVersion
operation, the matchVersion parameter matched the version of the
previous value.
Copyright (c) 2011, 2017 Oracle and/or its affiliates. All rights reserved.