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

Packages that use Delete
org.apache.hadoop.hbase.catalog   
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.thrift2 Provides an HBase Thrift service. 
 

Uses of Delete in org.apache.hadoop.hbase.catalog
 

Methods in org.apache.hadoop.hbase.catalog that return Delete
static Delete MetaEditor.makeDeleteFromRegionInfo(HRegionInfo regionInfo)
          Generates and returns a Delete containing the region info for the catalog table
 

Method parameters in org.apache.hadoop.hbase.catalog with type arguments of type Delete
static void MetaEditor.deleteFromMetaTable(CatalogTracker ct, List<Delete> deletes)
          Delete the passed deletes from the .META. table.
 

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

Methods in org.apache.hadoop.hbase.client that return Delete
 Delete Delete.addDeleteMarker(KeyValue kv)
          Advanced use only.
 Delete Delete.deleteColumn(byte[] family, byte[] qualifier)
          Delete the latest version of the specified column.
 Delete Delete.deleteColumn(byte[] family, byte[] qualifier, long timestamp)
          Delete the specified version of the specified column.
 Delete Delete.deleteColumns(byte[] family, byte[] qualifier)
          Delete all versions of the specified column.
 Delete Delete.deleteColumns(byte[] family, byte[] qualifier, long timestamp)
          Delete all versions of the specified column with a timestamp less than or equal to the specified timestamp.
 Delete Delete.deleteFamily(byte[] family)
          Delete all versions of all columns of the specified family.
 Delete Delete.deleteFamily(byte[] family, long timestamp)
          Delete all columns of the specified family with a timestamp less than or equal to the specified timestamp.
 Delete Delete.deleteFamilyVersion(byte[] family, long timestamp)
          Delete all columns of the specified family with a timestamp equal to the specified timestamp.
 

Methods in org.apache.hadoop.hbase.client with parameters of type Delete
 void RowMutations.add(Delete d)
          Add a Delete operation to the list of mutations
 boolean HTableInterface.checkAndDelete(byte[] row, byte[] family, byte[] qualifier, byte[] value, Delete delete)
          Atomically checks if a row/family/qualifier value matches the expected value.
 boolean HTable.checkAndDelete(byte[] row, byte[] family, byte[] qualifier, byte[] value, Delete delete)
          Atomically checks if a row/family/qualifier value matches the expected value.
 void HTableInterface.delete(Delete delete)
          Deletes the specified cells/row.
 void HTable.delete(Delete delete)
          Deletes the specified cells/row.
 

Method parameters in org.apache.hadoop.hbase.client with type arguments of type Delete
 void HTableInterface.delete(List<Delete> deletes)
          Deletes the specified cells/rows in bulk.
 void HTable.delete(List<Delete> deletes)
          Deletes the specified cells/rows in bulk.
 

Constructors in org.apache.hadoop.hbase.client with parameters of type Delete
Delete(Delete d)
           
 

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

Methods in org.apache.hadoop.hbase.coprocessor with parameters of type Delete
 boolean RegionObserver.postCheckAndDelete(ObserverContext<RegionCoprocessorEnvironment> c, byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, ByteArrayComparable comparator, Delete delete, boolean result)
          Called after checkAndDelete
 boolean BaseRegionObserver.postCheckAndDelete(ObserverContext<RegionCoprocessorEnvironment> e, byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, ByteArrayComparable comparator, Delete delete, boolean result)
           
 void RegionObserver.postDelete(ObserverContext<RegionCoprocessorEnvironment> c, Delete delete, WALEdit edit, Durability durability)
          Called after the client deletes a value.
 void BaseRegionObserver.postDelete(ObserverContext<RegionCoprocessorEnvironment> e, Delete delete, WALEdit edit, Durability durability)
           
 boolean RegionObserver.preCheckAndDelete(ObserverContext<RegionCoprocessorEnvironment> c, byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, ByteArrayComparable comparator, Delete delete, boolean result)
          Called before checkAndDelete
 boolean BaseRegionObserver.preCheckAndDelete(ObserverContext<RegionCoprocessorEnvironment> e, byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, ByteArrayComparable comparator, Delete delete, boolean result)
           
 void RegionObserver.preDelete(ObserverContext<RegionCoprocessorEnvironment> c, Delete delete, WALEdit edit, Durability durability)
          Called before the client deletes a value.
 void BaseRegionObserver.preDelete(ObserverContext<RegionCoprocessorEnvironment> e, Delete delete, WALEdit edit, Durability durability)
           
 

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

Methods in org.apache.hadoop.hbase.protobuf that return Delete
static Delete ProtobufUtil.toDelete(ClientProtos.MutationProto proto)
          Convert a protocol buffer Mutate to a Delete
static Delete ProtobufUtil.toDelete(ClientProtos.MutationProto proto, CellScanner cellScanner)
          Convert a protocol buffer Mutate to a Delete
 

Methods in org.apache.hadoop.hbase.protobuf with parameters of type Delete
static ClientProtos.MutateRequest RequestConverter.buildMutateRequest(byte[] regionName, byte[] row, byte[] family, byte[] qualifier, ByteArrayComparable comparator, HBaseProtos.CompareType compareType, Delete delete)
          Create a protocol buffer MutateRequest for a conditioned delete
static ClientProtos.MutateRequest RequestConverter.buildMutateRequest(byte[] regionName, Delete delete)
          Create a protocol buffer MutateRequest for a delete
 

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

Methods in org.apache.hadoop.hbase.regionserver with parameters of type Delete
 void HRegion.delete(Delete delete)
           
 boolean RegionCoprocessorHost.postCheckAndDelete(byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, ByteArrayComparable comparator, Delete delete, boolean result)
           
 void RegionCoprocessorHost.postDelete(Delete delete, WALEdit edit, Durability durability)
           
 Boolean RegionCoprocessorHost.preCheckAndDelete(byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, ByteArrayComparable comparator, Delete delete)
           
 boolean RegionCoprocessorHost.preDelete(Delete delete, WALEdit edit, Durability durability)
           
 

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

Methods in org.apache.hadoop.hbase.rest.client with parameters of type Delete
 boolean RemoteHTable.checkAndDelete(byte[] row, byte[] family, byte[] qualifier, byte[] value, Delete delete)
           
 void RemoteHTable.delete(Delete delete)
           
 

Method parameters in org.apache.hadoop.hbase.rest.client with type arguments of type Delete
 void RemoteHTable.delete(List<Delete> deletes)
           
 

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

Methods in org.apache.hadoop.hbase.security.access with parameters of type Delete
 void AccessController.postDelete(ObserverContext<RegionCoprocessorEnvironment> c, Delete delete, WALEdit edit, Durability durability)
           
 boolean AccessController.preCheckAndDelete(ObserverContext<RegionCoprocessorEnvironment> c, byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, ByteArrayComparable comparator, Delete delete, boolean result)
           
 void AccessController.preDelete(ObserverContext<RegionCoprocessorEnvironment> c, Delete delete, WALEdit edit, Durability durability)
           
 

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

Methods in org.apache.hadoop.hbase.thrift2 that return Delete
static Delete ThriftUtilities.deleteFromThrift(TDelete in)
          Creates a Delete (HBase) from a TDelete (Thrift).
 

Methods in org.apache.hadoop.hbase.thrift2 that return types with arguments of type Delete
static List<Delete> ThriftUtilities.deletesFromThrift(List<TDelete> in)
          Converts multiple TDeletes (Thrift) into a list of Deletes (HBase).
 

Methods in org.apache.hadoop.hbase.thrift2 with parameters of type Delete
static TDelete ThriftUtilities.deleteFromHBase(Delete in)
           
 



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