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

Packages that use Delete
org.apache.hadoop.hbase.avro Provides an HBase Avro service. 
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.coprocessor Table of Contents 
org.apache.hadoop.hbase.ipc Tools to help define network clients and servers. 
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.avro
 

Methods in org.apache.hadoop.hbase.avro that return Delete
static Delete AvroUtil.adeleteToDelete(ADelete adelete)
           
 

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.
 

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 BaseRegionObserver.postCheckAndDelete(ObserverContext<RegionCoprocessorEnvironment> e, byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, WritableByteArrayComparable comparator, Delete delete, boolean result)
           
 boolean RegionObserver.postCheckAndDelete(ObserverContext<RegionCoprocessorEnvironment> c, byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, WritableByteArrayComparable comparator, Delete delete, boolean result)
          Called after checkAndDelete
 void BaseRegionObserver.postDelete(ObserverContext<RegionCoprocessorEnvironment> e, Delete delete, WALEdit edit, boolean writeToWAL)
           
 void RegionObserver.postDelete(ObserverContext<RegionCoprocessorEnvironment> c, Delete delete, WALEdit edit, boolean writeToWAL)
          Called after the client deletes a value.
 boolean BaseRegionObserver.preCheckAndDelete(ObserverContext<RegionCoprocessorEnvironment> e, byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, WritableByteArrayComparable comparator, Delete delete, boolean result)
           
 boolean RegionObserver.preCheckAndDelete(ObserverContext<RegionCoprocessorEnvironment> c, byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, WritableByteArrayComparable comparator, Delete delete, boolean result)
          Called before checkAndDelete
 void BaseRegionObserver.preDelete(ObserverContext<RegionCoprocessorEnvironment> e, Delete delete, WALEdit edit, boolean writeToWAL)
           
 void RegionObserver.preDelete(ObserverContext<RegionCoprocessorEnvironment> c, Delete delete, WALEdit edit, boolean writeToWAL)
          Called before the client deletes a value.
 

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

Methods in org.apache.hadoop.hbase.ipc with parameters of type Delete
 boolean HRegionInterface.checkAndDelete(byte[] regionName, byte[] row, byte[] family, byte[] qualifier, byte[] value, Delete delete)
          Atomically checks if a row/family/qualifier value match the expectedValue.
 boolean HRegionInterface.checkAndDelete(byte[] regionName, byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, WritableByteArrayComparable comparator, Delete delete)
          Atomically checks if a row/family/qualifier value match the expectedValue.
 void HRegionInterface.delete(byte[] regionName, Delete delete)
          Deletes all the KeyValues that match those found in the Delete object, if their ts <= to the Delete.
 

Method parameters in org.apache.hadoop.hbase.ipc with type arguments of type Delete
 int HRegionInterface.delete(byte[] regionName, List<Delete> deletes)
          Put an array of deletes into the specified region
 

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

Methods in org.apache.hadoop.hbase.regionserver with parameters of type Delete
 boolean HRegionServer.checkAndDelete(byte[] regionName, byte[] row, byte[] family, byte[] qualifier, byte[] value, Delete delete)
           
 boolean HRegionServer.checkAndDelete(byte[] regionName, byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, WritableByteArrayComparable comparator, Delete delete)
           
 void HRegionServer.delete(byte[] regionName, Delete delete)
           
 void HRegion.delete(Delete delete, Integer lockid, boolean writeToWAL)
           
 boolean RegionCoprocessorHost.postCheckAndDelete(byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, WritableByteArrayComparable comparator, Delete delete, boolean result)
           
 void RegionCoprocessorHost.postDelete(Delete delete, WALEdit edit, boolean writeToWAL)
           
 Boolean RegionCoprocessorHost.preCheckAndDelete(byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, WritableByteArrayComparable comparator, Delete delete)
           
 boolean RegionCoprocessorHost.preDelete(Delete delete, WALEdit edit, boolean writeToWAL)
           
 

Method parameters in org.apache.hadoop.hbase.regionserver with type arguments of type Delete
 int HRegionServer.delete(byte[] regionName, List<Delete> deletes)
           
 

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, boolean writeToWAL)
           
 boolean AccessController.preCheckAndDelete(ObserverContext<RegionCoprocessorEnvironment> c, byte[] row, byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, WritableByteArrayComparable comparator, Delete delete, boolean result)
           
 void AccessController.preDelete(ObserverContext<RegionCoprocessorEnvironment> c, Delete delete, WALEdit edit, boolean writeToWAL)
           
 

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)
           
 

Method parameters in org.apache.hadoop.hbase.thrift2 with type arguments of type Delete
static List<TDelete> ThriftUtilities.deletesFromHBase(List<Delete> in)
           
 



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