Interface Table.CheckAndMutateWithFilterBuilder

Enclosing interface:
Table

Deprecated.
Since 3.0.0, will be removed in 4.0.0. For internal test use only, do not use it any more.
A helper class for sending checkAndMutate request with a filter.
  • Method Details

    • timeRange

      Deprecated.
      Specify a timerange.
      Parameters:
      timeRange - timeRange to check
    • thenPut

      boolean thenPut(Put put) throws IOException
      Deprecated.
      Specify a Put to commit if the check succeeds.
      Parameters:
      put - data to put if check succeeds
      Returns:
      true if the new put was executed, false otherwise.
      Throws:
      IOException
    • thenDelete

      boolean thenDelete(Delete delete) throws IOException
      Deprecated.
      Specify a Delete to commit if the check succeeds.
      Parameters:
      delete - data to delete if check succeeds
      Returns:
      true if the new delete was executed, false otherwise.
      Throws:
      IOException
    • thenMutate

      boolean thenMutate(RowMutations mutation) throws IOException
      Deprecated.
      Specify a RowMutations to commit if the check succeeds.
      Parameters:
      mutation - mutations to perform if check succeeds
      Returns:
      true if the new mutation was executed, false otherwise.
      Throws:
      IOException