Uses of Class
org.apache.hadoop.hbase.client.Get

Packages that use Get
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.coprocessor Table of Contents 
org.apache.hadoop.hbase.protobuf Holds classes generated from protobuf src/main/protobuf definition files. 
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.rest.client   
org.apache.hadoop.hbase.security.access   
org.apache.hadoop.hbase.security.visibility   
org.apache.hadoop.hbase.thrift2 Provides an HBase Thrift service. 
 

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

Methods in org.apache.hadoop.hbase.client that return Get
 Get Get.addColumn(byte[] family, byte[] qualifier)
          Get the column from the specific family with the specified qualifier.
 Get Get.addFamily(byte[] family)
          Get all columns from the specified family.
 Get Get.setFilter(Filter filter)
           
 Get Get.setMaxResultsPerColumnFamily(int limit)
          Set the maximum number of values to return per row per Column Family
 Get Get.setMaxVersions()
          Get all available versions.
 Get Get.setMaxVersions(int maxVersions)
          Get up to the specified number of versions of each column.
 Get Get.setRowOffsetPerColumnFamily(int offset)
          Set offset for the row per Column Family.
 Get Get.setTimeRange(long minStamp, long maxStamp)
          Get versions of columns only within the specified timestamp range, [minStamp, maxStamp).
 Get Get.setTimeStamp(long timestamp)
          Get versions of columns with the specified timestamp.
 

Methods in org.apache.hadoop.hbase.client with parameters of type Get
 boolean HTable.exists(Get get)
          Test for the existence of columns in the table, as specified by the Get.
 boolean HTableInterface.exists(Get get)
          Test for the existence of columns in the table, as specified by the Get.
 Result HTable.get(Get get)
          Extracts certain cells from a given row.
 Result HTableInterface.get(Get get)
          Extracts certain cells from a given row.
 

Method parameters in org.apache.hadoop.hbase.client with type arguments of type Get
 Boolean[] HTable.exists(List<Get> gets)
          Test for the existence of columns in the table, as specified by the Gets.
 Boolean[] HTableInterface.exists(List<Get> gets)
          Test for the existence of columns in the table, as specified by the Gets.
 Result[] HTable.get(List<Get> gets)
          Extracts certain cells from the given rows, in batch.
 Result[] HTableInterface.get(List<Get> gets)
          Extracts certain cells from the given rows, in batch.
 

Constructors in org.apache.hadoop.hbase.client with parameters of type Get
Get(Get get)
          Copy-constructor
Scan(Get get)
          Builds a scan object with the same specs as get.
 

Uses of Get in org.apache.hadoop.hbase.coprocessor
 

Methods in org.apache.hadoop.hbase.coprocessor with parameters of type Get
 boolean BaseRegionObserver.postExists(ObserverContext<RegionCoprocessorEnvironment> e, Get get, boolean exists)
           
 boolean RegionObserver.postExists(ObserverContext<RegionCoprocessorEnvironment> c, Get get, boolean exists)
          Called after the client tests for existence using a Get.
 void BaseRegionObserver.postGet(ObserverContext<RegionCoprocessorEnvironment> c, Get get, List<KeyValue> result)
          Deprecated. 
 void RegionObserver.postGet(ObserverContext<RegionCoprocessorEnvironment> c, Get get, List<KeyValue> result)
          Deprecated. 
 void BaseRegionObserver.postGetOp(ObserverContext<RegionCoprocessorEnvironment> e, Get get, List<Cell> results)
           
 void RegionObserver.postGetOp(ObserverContext<RegionCoprocessorEnvironment> c, Get get, List<Cell> result)
          Called after the client performs a Get
 boolean BaseRegionObserver.preExists(ObserverContext<RegionCoprocessorEnvironment> e, Get get, boolean exists)
           
 boolean RegionObserver.preExists(ObserverContext<RegionCoprocessorEnvironment> c, Get get, boolean exists)
          Called before the client tests for existence using a Get.
 void BaseRegionObserver.preGet(ObserverContext<RegionCoprocessorEnvironment> c, Get get, List<KeyValue> result)
          Deprecated. 
 void RegionObserver.preGet(ObserverContext<RegionCoprocessorEnvironment> c, Get get, List<KeyValue> result)
          Deprecated. 
 void BaseRegionObserver.preGetOp(ObserverContext<RegionCoprocessorEnvironment> e, Get get, List<Cell> results)
           
 void RegionObserver.preGetOp(ObserverContext<RegionCoprocessorEnvironment> c, Get get, List<Cell> result)
          Called before the client performs a Get
 void BaseRegionObserver.prePrepareTimeStampForDeleteVersion(ObserverContext<RegionCoprocessorEnvironment> e, Mutation delete, Cell cell, byte[] byteNow, Get get)
           
 void RegionObserver.prePrepareTimeStampForDeleteVersion(ObserverContext<RegionCoprocessorEnvironment> c, Mutation mutation, Cell cell, byte[] byteNow, Get get)
          Called before the server updates the timestamp for version delete with latest timestamp.
 

Uses of Get in org.apache.hadoop.hbase.protobuf
 

Methods in org.apache.hadoop.hbase.protobuf that return Get
static Get ProtobufUtil.toGet(ClientProtos.Get proto)
          Convert a protocol buffer Get to a client Get
 

Methods in org.apache.hadoop.hbase.protobuf with parameters of type Get
static ClientProtos.GetRequest RequestConverter.buildGetRequest(byte[] regionName, Get get)
          Create a protocol buffer GetRequest for a client Get
static Result ProtobufUtil.get(ClientProtos.ClientService.BlockingInterface client, byte[] regionName, Get get)
          A helper to invoke a Get using client protocol.
static Result ProtobufUtil.get(ClientProtos.ClientService.BlockingInterface client, byte[] regionName, Get get, PayloadCarryingRpcController controller)
          A helper to invoke a Get using client protocol.
static ClientProtos.Get ProtobufUtil.toGet(Get get)
          Create a protocol buffer Get based on a client Get.
 

Uses of Get in org.apache.hadoop.hbase.regionserver
 

Methods in org.apache.hadoop.hbase.regionserver with parameters of type Get
 Result HRegion.get(Get get)
           
 List<Cell> HRegion.get(Get get, boolean withCoprocessor)
           
 boolean RegionCoprocessorHost.postExists(Get get, boolean exists)
           
 void RegionCoprocessorHost.postGet(Get get, List<Cell> results)
           
 Boolean RegionCoprocessorHost.preExists(Get get)
           
 boolean RegionCoprocessorHost.preGet(Get get, List<Cell> results)
           
 boolean RegionCoprocessorHost.prePrepareTimeStampForDeleteVersion(Mutation mutation, Cell kv, byte[] byteNow, Get get)
           
 

Constructors in org.apache.hadoop.hbase.regionserver with parameters of type Get
InternalScan(Get get)
           
 

Uses of Get in org.apache.hadoop.hbase.rest.client
 

Methods in org.apache.hadoop.hbase.rest.client with parameters of type Get
 boolean RemoteHTable.exists(Get get)
           
 Result RemoteHTable.get(Get get)
           
 

Method parameters in org.apache.hadoop.hbase.rest.client with type arguments of type Get
 Boolean[] RemoteHTable.exists(List<Get> gets)
          exists(List) is really a list of get() calls.
 Result[] RemoteHTable.get(List<Get> gets)
           
 

Uses of Get in org.apache.hadoop.hbase.security.access
 

Methods in org.apache.hadoop.hbase.security.access with parameters of type Get
 boolean AccessController.preExists(ObserverContext<RegionCoprocessorEnvironment> c, Get get, boolean exists)
           
 void AccessController.preGetOp(ObserverContext<RegionCoprocessorEnvironment> c, Get get, List<Cell> result)
           
 

Uses of Get in org.apache.hadoop.hbase.security.visibility
 

Methods in org.apache.hadoop.hbase.security.visibility with parameters of type Get
 void VisibilityController.preGetOp(ObserverContext<RegionCoprocessorEnvironment> e, Get get, List<Cell> results)
           
 void VisibilityController.prePrepareTimeStampForDeleteVersion(ObserverContext<RegionCoprocessorEnvironment> ctx, Mutation delete, Cell cell, byte[] byteNow, Get get)
           
 

Uses of Get in org.apache.hadoop.hbase.thrift2
 

Methods in org.apache.hadoop.hbase.thrift2 that return Get
static Get ThriftUtilities.getFromThrift(TGet in)
          Creates a Get (HBase) from a TGet (Thrift).
 

Methods in org.apache.hadoop.hbase.thrift2 that return types with arguments of type Get
static List<Get> ThriftUtilities.getsFromThrift(List<TGet> in)
          Converts multiple TGets (Thrift) into a list of Gets (HBase).
 



Copyright © 2007–2015 The Apache Software Foundation. All rights reserved.