@Deprecated public static interface Table.CheckAndMutateBuilder
| Modifier and Type | Method and Description | 
|---|---|
default Table.CheckAndMutateBuilder | 
ifEquals(byte[] value)
Deprecated.  
Check for equality. 
 | 
Table.CheckAndMutateBuilder | 
ifMatches(CompareOperator compareOp,
         byte[] value)
Deprecated.  
  | 
Table.CheckAndMutateBuilder | 
ifNotExists()
Deprecated.  
Check for lack of column. 
 | 
Table.CheckAndMutateBuilder | 
qualifier(byte[] qualifier)
Deprecated.  
  | 
boolean | 
thenDelete(Delete delete)
Deprecated.  
  | 
boolean | 
thenMutate(RowMutations mutation)
Deprecated.  
  | 
boolean | 
thenPut(Put put)
Deprecated.  
  | 
Table.CheckAndMutateBuilder | 
timeRange(TimeRange timeRange)
Deprecated.  
  | 
Table.CheckAndMutateBuilder qualifier(byte[] qualifier)
qualifier - column qualifier to check.Table.CheckAndMutateBuilder timeRange(TimeRange timeRange)
timeRange - timeRange to checkTable.CheckAndMutateBuilder ifNotExists()
default Table.CheckAndMutateBuilder ifEquals(byte[] value)
value - the expected valueTable.CheckAndMutateBuilder ifMatches(CompareOperator compareOp, byte[] value)
compareOp - comparison operator to usevalue - the expected valueboolean thenPut(Put put) throws IOException
put - data to put if check succeedstrue if the new put was executed, false otherwise.IOExceptionboolean thenDelete(Delete delete) throws IOException
delete - data to delete if check succeedstrue if the new delete was executed, false otherwise.IOExceptionboolean thenMutate(RowMutations mutation) throws IOException
mutation - mutations to perform if check succeedsIOExceptionCopyright © 2007–2022 The Apache Software Foundation. All rights reserved.