Package org.apache.hadoop.hbase.client
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 Summary
Modifier and TypeMethodDescriptionboolean
thenDelete
(Delete delete) Deprecated.Specify a Delete to commit if the check succeeds.boolean
thenMutate
(RowMutations mutation) Deprecated.Specify a RowMutations to commit if the check succeeds.boolean
Deprecated.Specify a Put to commit if the check succeeds.Deprecated.Specify a timerange.
-
Method Details
-
timeRange
Deprecated.Specify a timerange.- Parameters:
timeRange
- timeRange to check
-
thenPut
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
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
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
-