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

Packages that use RowFilterInterface
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.filter   
 

Uses of RowFilterInterface in org.apache.hadoop.hbase
 

Methods in org.apache.hadoop.hbase with parameters of type RowFilterInterface
 HScannerInterface HRegion.getScanner(org.apache.hadoop.io.Text[] cols, org.apache.hadoop.io.Text firstRow, long timestamp, RowFilterInterface filter)
          Return an iterator that scans over the HRegion, returning the indicated columns for only the rows that match the data filter.
 HScannerInterface HTable.obtainScanner(org.apache.hadoop.io.Text[] columns, org.apache.hadoop.io.Text startRow, long timestamp, RowFilterInterface filter)
          Get a scanner on the current table starting at the specified row.
 HScannerInterface HTable.obtainScanner(org.apache.hadoop.io.Text[] columns, org.apache.hadoop.io.Text startRow, RowFilterInterface filter)
          Get a scanner on the current table starting at the specified row.
 long HRegionServer.openScanner(org.apache.hadoop.io.Text regionName, org.apache.hadoop.io.Text[] cols, org.apache.hadoop.io.Text firstRow, long timestamp, RowFilterInterface filter)
          Opens a remote scanner with a RowFilter.
 long HRegionInterface.openScanner(org.apache.hadoop.io.Text regionName, org.apache.hadoop.io.Text[] columns, org.apache.hadoop.io.Text startRow, long timestamp, RowFilterInterface filter)
          Opens a remote scanner with a RowFilter.
 

Constructors in org.apache.hadoop.hbase with parameters of type RowFilterInterface
HTable.ClientScanner(org.apache.hadoop.io.Text[] columns, org.apache.hadoop.io.Text startRow, long timestamp, RowFilterInterface filter)
           
 

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

Classes in org.apache.hadoop.hbase.filter that implement RowFilterInterface
 class InclusiveStopRowFilter
          Subclass of StopRowFilter that filters rows > the stop row, making it include up to the last row but no further.
 class PageRowFilter
          Implementation of RowFilterInterface that limits results to a specific page size.
 class RegExpRowFilter
          Implementation of RowFilterInterface that can filter by rowkey regular expression and/or individual column values (equals comparison only).
 class RowFilterSet
          Implementation of RowFilterInterface that represents a set of RowFilters which will be evaluated with a specified boolean operator MUST_PASS_ALL (!AND) or MUST_PASS_ONE (!OR).
 class StopRowFilter
          Implementation of RowFilterInterface that filters out rows greater than or equal to a specified rowKey.
 class WhileMatchRowFilter
          WhileMatchRowFilter is a wrapper filter that filters everything after the first filtered row.
 

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

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

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



Copyright © 2008 The Apache Software Foundation