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

Packages that use RowFilterInterface
org.apache.hadoop.hbase Provides HBase, the Hadoop simple database. 
org.apache.hadoop.hbase.filter   
 

Uses of RowFilterInterface in org.apache.hadoop.hbase
 

Methods in org.apache.hadoop.hbase with parameters of type RowFilterInterface
 HInternalScannerInterface HRegion.getScanner(Text[] cols, 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 HClient.obtainScanner(Text[] columns, Text startRow, long timestamp, RowFilterInterface filter)
          Get a scanner on the current table starting at the specified row.
 HScannerInterface HClient.obtainScanner(Text[] columns, Text startRow, RowFilterInterface filter)
          Get a scanner on the current table starting at the specified row.
 long HRegionInterface.openScanner(Text regionName, Text[] columns, Text startRow, long timestamp, RowFilterInterface filter)
          Opens a remote scanner with a RowFilter.
 long HRegionServer.openScanner(Text regionName, Text[] cols, Text firstRow, long timestamp, RowFilterInterface filter)
          Opens a remote scanner with a RowFilter.
 

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

Classes in org.apache.hadoop.hbase.filter that implement RowFilterInterface
 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 AND/OR.
 

Constructor parameters in org.apache.hadoop.hbase.filter with type arguments of type RowFilterInterface
RowFilterSet(org.apache.hadoop.hbase.filter.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 © 2006 The Apache Software Foundation