| Package | Description | 
|---|---|
| org.apache.hadoop.hbase.client | Provides HBase Client | 
| org.apache.hadoop.hbase.regionserver | |
| org.apache.hadoop.hbase.thrift2 | Provides an HBase Thrift
service. | 
| org.apache.hadoop.hbase.thrift2.client | 
| Modifier and Type | Method and Description | 
|---|---|
| RowMutations | RowMutations. add(List<? extends Mutation> mutations) | 
| RowMutations | RowMutations. add(Mutation mutation) | 
| static RowMutations | RowMutations. of(List<? extends Mutation> mutations)Create a  RowMutationswith the specified mutations. | 
| Modifier and Type | Method and Description | 
|---|---|
| CheckAndMutate | CheckAndMutate.Builder. build(RowMutations mutations) | 
| boolean | HTable. checkAndMutate(byte[] row,
              byte[] family,
              byte[] qualifier,
              CompareFilter.CompareOp compareOp,
              byte[] value,
              RowMutations rm)Deprecated.  | 
| default boolean | Table. checkAndMutate(byte[] row,
              byte[] family,
              byte[] qualifier,
              CompareFilter.CompareOp compareOp,
              byte[] value,
              RowMutations mutation)Deprecated. 
 Since 2.0.0. Will be removed in 3.0.0. Use  Table.checkAndMutate(byte[], byte[]) | 
| boolean | HTable. checkAndMutate(byte[] row,
              byte[] family,
              byte[] qualifier,
              CompareOperator op,
              byte[] value,
              RowMutations rm)Deprecated.  | 
| default boolean | Table. checkAndMutate(byte[] row,
              byte[] family,
              byte[] qualifier,
              CompareOperator op,
              byte[] value,
              RowMutations mutation)Deprecated. 
 Since 2.0.0. Will be removed in 3.0.0. Use  Table.checkAndMutate(byte[], byte[]) | 
| private CheckAndMutateResult | HTable. doCheckAndMutate(byte[] row,
                byte[] family,
                byte[] qualifier,
                CompareOperator op,
                byte[] value,
                Filter filter,
                TimeRange timeRange,
                RowMutations rm) | 
| private <RES,RESP> CompletableFuture<RESP> | RawAsyncTableImpl. mutateRow(HBaseRpcController controller,
         HRegionLocation loc,
         org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.ClientService.Interface stub,
         RowMutations mutation,
         RawAsyncTableImpl.Converter<org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MultiRequest,byte[],RowMutations> reqConvert,
         Function<RES,RESP> respConverter) | 
| Result | HTable. mutateRow(RowMutations rm) | 
| CompletableFuture<Result> | AsyncTable. mutateRow(RowMutations mutation)Performs multiple mutations atomically on a single row. | 
| default Result | Table. mutateRow(RowMutations rm)Performs multiple mutations atomically on a single row. | 
| CompletableFuture<Result> | RawAsyncTableImpl. mutateRow(RowMutations mutations) | 
| CompletableFuture<Result> | AsyncTableImpl. mutateRow(RowMutations mutation) | 
| boolean | HTable.CheckAndMutateBuilderImpl. thenMutate(RowMutations mutation) | 
| boolean | HTable.CheckAndMutateWithFilterBuilderImpl. thenMutate(RowMutations mutation) | 
| CompletableFuture<Boolean> | AsyncTable.CheckAndMutateBuilder. thenMutate(RowMutations mutation)Deprecated.  | 
| CompletableFuture<Boolean> | AsyncTable.CheckAndMutateWithFilterBuilder. thenMutate(RowMutations mutation)Deprecated.  | 
| boolean | Table.CheckAndMutateBuilder. thenMutate(RowMutations mutation)Deprecated.  | 
| boolean | Table.CheckAndMutateWithFilterBuilder. thenMutate(RowMutations mutation)Deprecated.  | 
| CompletableFuture<Boolean> | RawAsyncTableImpl.CheckAndMutateBuilderImpl. thenMutate(RowMutations mutation) | 
| CompletableFuture<Boolean> | RawAsyncTableImpl.CheckAndMutateWithFilterBuilderImpl. thenMutate(RowMutations mutation) | 
| Modifier and Type | Method and Description | 
|---|---|
| private <RES,RESP> CompletableFuture<RESP> | RawAsyncTableImpl. mutateRow(HBaseRpcController controller,
         HRegionLocation loc,
         org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.ClientService.Interface stub,
         RowMutations mutation,
         RawAsyncTableImpl.Converter<org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MultiRequest,byte[],RowMutations> reqConvert,
         Function<RES,RESP> respConverter) | 
| Modifier and Type | Method and Description | 
|---|---|
| default boolean | Region. checkAndRowMutate(byte[] row,
                 byte[] family,
                 byte[] qualifier,
                 CompareOperator op,
                 ByteArrayComparable comparator,
                 RowMutations mutations)Deprecated. 
 since 2.4.0 and will be removed in 4.0.0. Use
    Region.checkAndMutate(CheckAndMutate)instead. | 
| boolean | Region. checkAndRowMutate(byte[] row,
                 byte[] family,
                 byte[] qualifier,
                 CompareOperator op,
                 ByteArrayComparable comparator,
                 TimeRange timeRange,
                 RowMutations mutations)Deprecated. 
 since 2.4.0 and will be removed in 4.0.0. Use
    Region.checkAndMutate(CheckAndMutate)instead. | 
| boolean | HRegion. checkAndRowMutate(byte[] row,
                 byte[] family,
                 byte[] qualifier,
                 CompareOperator op,
                 ByteArrayComparable comparator,
                 TimeRange timeRange,
                 RowMutations rm)Deprecated.  | 
| default boolean | Region. checkAndRowMutate(byte[] row,
                 Filter filter,
                 RowMutations mutations)Deprecated. 
 since 2.4.0 and will be removed in 4.0.0. Use
    Region.checkAndMutate(CheckAndMutate)instead. | 
| boolean | Region. checkAndRowMutate(byte[] row,
                 Filter filter,
                 TimeRange timeRange,
                 RowMutations mutations)Deprecated. 
 since 2.4.0 and will be removed in 4.0.0. Use
    Region.checkAndMutate(CheckAndMutate)instead. | 
| boolean | HRegion. checkAndRowMutate(byte[] row,
                 Filter filter,
                 TimeRange timeRange,
                 RowMutations rm)Deprecated.  | 
| Result | Region. mutateRow(RowMutations mutations)Performs multiple mutations atomically on a single row. | 
| Result | HRegion. mutateRow(RowMutations rm) | 
| Modifier and Type | Method and Description | 
|---|---|
| static RowMutations | ThriftUtilities. rowMutationsFromThrift(org.apache.hadoop.hbase.thrift2.generated.TRowMutations in)Creates a  RowMutations(HBase) from aTRowMutations(Thrift) | 
| Modifier and Type | Method and Description | 
|---|---|
| static org.apache.hadoop.hbase.thrift2.generated.TRowMutations | ThriftUtilities. rowMutationsFromHBase(RowMutations in) | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | ThriftTable. checkAndMutate(byte[] row,
              byte[] family,
              byte[] qualifier,
              CompareOperator op,
              byte[] value,
              RowMutations mutation) | 
| Result | ThriftTable. mutateRow(RowMutations rm) | 
| boolean | ThriftTable.CheckAndMutateBuilderImpl. thenMutate(RowMutations mutation) | 
Copyright © 2007–2021 The Apache Software Foundation. All rights reserved.