Uses of Interface
org.apache.hadoop.hbase.filter.RowFilterInterface

Packages that use RowFilterInterface
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.filter Provides row-level filters applied to HRegion scan results during calls to ResultScanner.next()
org.apache.hadoop.hbase.mapred Provides HBase MapReduce Input/OutputFormats, a table indexing MapReduce job, and utility 
org.apache.hadoop.hbase.rest Provides an HBase REST service. 
org.apache.hadoop.hbase.rest.filter   
 

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

Methods in org.apache.hadoop.hbase.client that return RowFilterInterface
 RowFilterInterface Scan.getOldFilter()
          Deprecated.  
 

Methods in org.apache.hadoop.hbase.client with parameters of type RowFilterInterface
 Scanner HTable.getScanner(byte[][] columns, byte[] startRow, long timestamp, RowFilterInterface filter)
          Deprecated. As of hbase 0.20.0, replaced by HTable.getScanner(Scan)
 Scanner HTable.getScanner(byte[][] columns, byte[] startRow, RowFilterInterface filter)
          Deprecated. As of hbase 0.20.0, replaced by HTable.getScanner(Scan)
 Scanner HTable.getScanner(String[] columns, String startRow, long timestamp, RowFilterInterface filter)
          Deprecated. As of hbase 0.20.0, replaced by HTable.getScanner(Scan)
 Scan Scan.setOldFilter(RowFilterInterface filter)
          Deprecated.  
 

Uses of RowFilterInterface in org.apache.hadoop.hbase.filter
 

Classes in org.apache.hadoop.hbase.filter that implement RowFilterInterface
 class ColumnValueFilter
          Deprecated. Use filters that are rooted on @{link Filter} instead.
 class InclusiveStopRowFilter
          Deprecated. Use filters that are rooted on @{link Filter} instead
 class PageRowFilter
          Deprecated. Use filters that are rooted on @{link Filter} instead
 class PrefixRowFilter
          Deprecated. Use filters that are rooted on @{link Filter} instead
 class RegExpRowFilter
          Deprecated. This interface doesn't work well in new KeyValue world. Use filters based on new Filter instead.
 class RowFilterSet
          Deprecated. Use filters that are rooted on @{link Filter} instead
 class StopRowFilter
          Deprecated. Use filters that are rooted on @{link Filter} instead
 class WhileMatchRowFilter
          Deprecated. Use filters that are rooted on @{link Filter} instead
 

Methods in org.apache.hadoop.hbase.filter that return RowFilterInterface
 RowFilterInterface WhileMatchRowFilter.getInternalFilter()
          Deprecated. Returns the internal filter being wrapped
 

Methods in org.apache.hadoop.hbase.filter that return types with arguments of type RowFilterInterface
 Set<RowFilterInterface> RowFilterSet.getFilters()
          Deprecated. Get the filters.
 

Methods in org.apache.hadoop.hbase.filter with parameters of type RowFilterInterface
 void RowFilterSet.addFilter(RowFilterInterface filter)
          Deprecated. Add a filter.
 

Constructors in org.apache.hadoop.hbase.filter with parameters of type RowFilterInterface
WhileMatchRowFilter(RowFilterInterface filter)
          Deprecated. Constructor
 

Constructor parameters in org.apache.hadoop.hbase.filter with type arguments of type RowFilterInterface
RowFilterSet(RowFilterSet.Operator operator, Set<RowFilterInterface> rowFilters)
          Deprecated. Constructor that takes a set of RowFilters and an operator.
RowFilterSet(Set<RowFilterInterface> rowFilters)
          Deprecated. Constructor that takes a set of RowFilters.
 

Uses of RowFilterInterface in org.apache.hadoop.hbase.mapred
 

Methods in org.apache.hadoop.hbase.mapred with parameters of type RowFilterInterface
protected  void TableInputFormatBase.setRowFilter(RowFilterInterface rowFilter)
          Deprecated. Allows subclasses to set the RowFilterInterface to be used.
 void TableInputFormatBase.TableRecordReader.setRowFilter(RowFilterInterface rowFilter)
           
 

Uses of RowFilterInterface in org.apache.hadoop.hbase.rest
 

Methods in org.apache.hadoop.hbase.rest that return RowFilterInterface
protected  RowFilterInterface ScannerController.getStopRow(byte[] stopRow)
           
protected  RowFilterInterface ScannerController.getStopRowUnionFilter(byte[] stopRow, RowFilterInterface filter)
           
protected  RowFilterInterface ScannerController.unionFilters(String filters)
          Given a list of filters in JSON string form, returns a RowSetFilter that returns true if all input filters return true on a Row (aka an AND statement).
 

Methods in org.apache.hadoop.hbase.rest with parameters of type RowFilterInterface
protected  RowFilterInterface ScannerController.getStopRowUnionFilter(byte[] stopRow, RowFilterInterface filter)
           
 ScannerIdentifier ScannerModel.scannerOpen(byte[] tableName, byte[][] columns, byte[] startRow, long timestamp, RowFilterInterface filter)
           
 ScannerIdentifier ScannerModel.scannerOpen(byte[] tableName, byte[][] columns, byte[] startRow, RowFilterInterface filter)
           
 ScannerIdentifier ScannerModel.scannerOpen(byte[] tableName, byte[][] columns, long timestamp, RowFilterInterface filter)
           
 ScannerIdentifier ScannerModel.scannerOpen(byte[] tableName, byte[][] columns, RowFilterInterface filter)
           
 ScannerIdentifier ScannerModel.scannerOpen(byte[] tableName, byte[] startRow, long timestamp, RowFilterInterface filter)
           
 ScannerIdentifier ScannerModel.scannerOpen(byte[] tableName, byte[] startRow, RowFilterInterface filter)
           
 ScannerIdentifier ScannerModel.scannerOpen(byte[] tableName, long timestamp, RowFilterInterface filter)
           
 ScannerIdentifier ScannerModel.scannerOpen(byte[] tableName, RowFilterInterface filter)
           
 ScannerIdentifier ScannerController.scannerSwitch(int switchInt, ScannerModel innerModel, byte[] tableName, byte[][] columns, long timestamp, byte[] startRow, byte[] stopRow, RowFilterInterface filterSet)
           
 

Uses of RowFilterInterface in org.apache.hadoop.hbase.rest.filter
 

Methods in org.apache.hadoop.hbase.rest.filter that return RowFilterInterface
 RowFilterInterface WhileMatchRowFilterFactory.getFilterFromJSON(String args)
           
 RowFilterInterface StopRowFilterFactory.getFilterFromJSON(String args)
           
 RowFilterInterface RowFilterSetFactory.getFilterFromJSON(String args)
           
 RowFilterInterface RegExpRowFilterFactory.getFilterFromJSON(String args)
           
 RowFilterInterface PageRowFilterFactory.getFilterFromJSON(String args)
           
 RowFilterInterface InclusiveStopRowFilterFactory.getFilterFromJSON(String args)
           
 RowFilterInterface FilterFactory.getFilterFromJSON(String args)
           
 RowFilterInterface ColumnValueFilterFactory.getFilterFromJSON(String args)
           
protected  RowFilterInterface RowFilterSetFactory.getRowFilter(org.json.JSONObject filter)
          A refactored method that encapsulates the creation of a RowFilter given a JSONObject with a correct form of: { "type" : "MY_TYPE", "args" : MY_ARGS, }
 



Copyright © 2009 The Apache Software Foundation