Class PutResult

    • Constructor Summary

      Constructors 
      Constructor Description
      PutResult()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      MapValue getExistingValue()
      Returns the existing row value if available.
      Version getExistingVersion()
      Returns the existing row Version if available.
      FieldValue getGeneratedValue()
      Returns the value generated if the operation created a new value for an identity column.
      int getReadKB()
      Returns the read throughput consumed by this operation, in KBytes.
      int getReadUnits()
      Returns the read throughput consumed by this operation, in read units.
      Version getVersion()
      Returns the Version of the new row if the operation was successful.
      int getWriteKB()
      Returns the write throughput consumed by this operation, in KBytes.
      int getWriteUnits()
      Returns the write throughput consumed by this operation, in write units.
      java.lang.String toString()  
      • Methods inherited from class oracle.nosql.driver.ops.WriteResult

        getExistingValueInternal, getExistingVersionInternal
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • PutResult

        public PutResult()
    • Method Detail

      • getVersion

        public Version getVersion()
        Returns the Version of the new row if the operation was successful. If the operation failed null is returned.
        Returns:
        the Version on success, null on failure
      • getExistingVersion

        public Version getExistingVersion()
        Returns the existing row Version if available. This value will only be available if the conditional put operation failed and the request specified that return information be returned using PutRequest.setReturnRow(boolean).
        Returns:
        the Version
      • getExistingValue

        public MapValue getExistingValue()
        Returns the existing row value if available. This value will only be available if the conditional put operation failed and the request specified that return information be returned using PutRequest.setReturnRow(boolean).
        Returns:
        the value
      • getReadKB

        public int getReadKB()
        Returns the read throughput consumed by this operation, in KBytes. This is the actual amount of data read by the operation. The number of read units consumed is returned by getReadUnits() which may be a larger number because this was an update operation.
        Returns:
        the read KBytes consumed
      • getWriteKB

        public int getWriteKB()
        Returns the write throughput consumed by this operation, in KBytes.
        Returns:
        the write KBytes consumed
      • getReadUnits

        public int getReadUnits()
        Returns the read throughput consumed by this operation, in read units. This number may be larger than that returned by getReadKB() because it was an update operation.
        Returns:
        the read units consumed
      • getWriteUnits

        public int getWriteUnits()
        Returns the write throughput consumed by this operation, in write units.
        Returns:
        the write units consumed
      • getGeneratedValue

        public FieldValue getGeneratedValue()
        Returns the value generated if the operation created a new value for an identity column. If the table has no identity columns this value is null. If it has an identity column and a value was generated for that column, it is non-null.
        Returns:
        the generated value
        Since:
        5.0.1
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object