Uses of Interface
org.apache.hadoop.hbase.client.Row

Packages that use Row
org.apache.hadoop.hbase.client Provides HBase Client 
 

Uses of Row in org.apache.hadoop.hbase.client
 

Classes in org.apache.hadoop.hbase.client that implement Row
 class Append
          Performs Append operations on a single row.
 class Delete
          Used to perform Delete operations on a single row.
 class Get
          Used to perform Get operations on a single row.
 class Increment
          Used to perform Increment operations on a single row.
 class Mutation
           
 class Put
          Used to perform Put operations for a single row.
 class RowMutations
          Performs multiple mutations atomically on a single row.
 

Methods in org.apache.hadoop.hbase.client that return Row
 Row Action.getAction()
           
 Row RetriesExhaustedWithDetailsException.getRow(int i)
           
 

Methods in org.apache.hadoop.hbase.client with parameters of type Row
 int RowMutations.compareTo(Row i)
           
 int Mutation.compareTo(Row d)
           
 int Increment.compareTo(Row i)
           
 int Get.compareTo(Row other)
           
 

Method parameters in org.apache.hadoop.hbase.client with type arguments of type Row
 Object[] HTableInterface.batch(List<? extends Row> actions)
          Same as HTableInterface.batch(List, Object[]), but returns an array of results instead of using a results parameter reference.
 Object[] HTable.batch(List<? extends Row> actions)
           
 void HTableInterface.batch(List<? extends Row> actions, Object[] results)
          Method that does a batch call on Deletes, Gets, Puts, Increments, Appends and RowMutations.
 void HTable.batch(List<? extends Row> actions, Object[] results)
           
<R> Object[]
HTableInterface.batchCallback(List<? extends Row> actions, Batch.Callback<R> callback)
          Same as HTableInterface.batch(List), but with a callback.
<R> Object[]
HTable.batchCallback(List<? extends Row> actions, Batch.Callback<R> callback)
           
<R> void
HTableInterface.batchCallback(List<? extends Row> actions, Object[] results, Batch.Callback<R> callback)
          Same as HTableInterface.batch(List, Object[]), but with a callback.
<R> void
HTable.batchCallback(List<? extends Row> actions, Object[] results, Batch.Callback<R> callback)
           
static void HTableUtil.bucketRsBatch(HTable htable, List<Row> rows)
          Processes a List of Rows (Put, Delete) and writes them to an HTable instance in RegionServer buckets via the htable.batch method.
static String RetriesExhaustedWithDetailsException.getDesc(List<Throwable> exceptions, List<Row> actions, List<String> hostnamePort)
           
 void HConnection.processBatch(List<? extends Row> actions, byte[] tableName, ExecutorService pool, Object[] results)
          Deprecated. since 0.96 - Use HTableInterface.batch(java.util.List, java.lang.Object[]) instead
 void HTable.processBatch(List<? extends Row> list, Object[] results)
          Parameterized batch processing, allowing varying return types for different Row implementations.
<R> void
HConnection.processBatchCallback(List<? extends Row> list, byte[] tableName, ExecutorService pool, Object[] results, Batch.Callback<R> callback)
          Deprecated. since 0.96 - Use HTableInterface.batchCallback(java.util.List, java.lang.Object[], org.apache.hadoop.hbase.client.coprocessor.Batch.Callback) instead
<R> void
HTable.processBatchCallback(List<? extends Row> list, Object[] results, Batch.Callback<R> callback)
          Process a mixed batch of Get, Put and Delete actions.
 

Constructors in org.apache.hadoop.hbase.client with parameters of type Row
Action(Row action, int originalIndex)
           
 

Constructor parameters in org.apache.hadoop.hbase.client with type arguments of type Row
RetriesExhaustedWithDetailsException(List<Throwable> exceptions, List<Row> actions, List<String> hostnameAndPort)
           
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.