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

Packages that use Filter
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.client.tableindexed This package provides support for secondary indexing by maintaining a separate, "index", table for each index. 
org.apache.hadoop.hbase.filter Provides row-level filters applied to HRegion scan results during calls to ResultScanner.next()
org.apache.hadoop.hbase.regionserver   
 

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

Methods in org.apache.hadoop.hbase.client that return Filter
 Filter Scan.getFilter()
           
 Filter Get.getFilter()
           
 

Methods in org.apache.hadoop.hbase.client with parameters of type Filter
 Scan Scan.setFilter(Filter filter)
          Apply the specified server-side filter when performing the Scan.
 Get Get.setFilter(Filter filter)
          Apply the specified server-side filter when performing the Get.
 

Constructors in org.apache.hadoop.hbase.client with parameters of type Filter
Scan(byte[] startRow, Filter filter)
           
 

Uses of Filter in org.apache.hadoop.hbase.client.tableindexed
 

Methods in org.apache.hadoop.hbase.client.tableindexed with parameters of type Filter
 ResultScanner IndexedTable.getIndexedScanner(String indexId, byte[] indexStartRow, byte[] indexStopRow, byte[][] indexColumns, Filter indexFilter, byte[][] baseColumns)
          Open up an indexed scanner.
 

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

Classes in org.apache.hadoop.hbase.filter that implement Filter
 class ColumnCountGetFilter
          Simple filter that returns first N columns on row only.
 class CompareFilter
          This is a generic filter to be used to filter by comparison.
 class FilterList
          Implementation of Filter that represents an ordered List of Filters which will be evaluated with a specified boolean operator MUST_PASS_ALL (!AND) or MUST_PASS_ONE (!OR).
 class FirstKeyOnlyFilter
          A filter that will only return the first KV from each row.
 class InclusiveStopFilter
          A Filter that stops after the given row.
 class PageFilter
          Implementation of Filter interface that limits results to a specific page size.
 class PrefixFilter
          Pass results that have same row prefix.
 class QualifierFilter
          This filter is used to filter based on the column qualifier.
 class RowFilter
          This filter is used to filter based on the key.
 class SingleColumnValueFilter
          This filter is used to filter cells based on value.
 class SkipFilter
          A wrapper filter that filters an entire row if any of the KeyValue checks do not pass.
 class ValueFilter
          This filter is used to filter based on column value.
 class WhileMatchFilter
          A wrapper filter that filters everything after the first filtered row.
 

Methods in org.apache.hadoop.hbase.filter that return types with arguments of type Filter
 List<Filter> FilterList.getFilters()
          Get the filters.
 

Methods in org.apache.hadoop.hbase.filter with parameters of type Filter
 void FilterList.addFilter(Filter filter)
          Add a filter.
 

Constructors in org.apache.hadoop.hbase.filter with parameters of type Filter
SkipFilter(Filter filter)
           
WhileMatchFilter(Filter filter)
           
 

Constructor parameters in org.apache.hadoop.hbase.filter with type arguments of type Filter
FilterList(FilterList.Operator operator, List<Filter> rowFilters)
          Constructor that takes a set of Filters and an operator.
FilterList(List<Filter> rowFilters)
          Constructor that takes a set of Filters.
 

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

Fields in org.apache.hadoop.hbase.regionserver declared as Filter
protected  Filter QueryMatcher.filter
           
 



Copyright © 2009 The Apache Software Foundation