Uses of Class
org.apache.hadoop.hbase.filter.FilterBase

Packages that use org.apache.hadoop.hbase.filter.FilterBase
Package
Description
Provides row-level filters applied to HRegion scan results during calls to ResultScanner.next().
  • Uses of org.apache.hadoop.hbase.filter.FilterBase in org.apache.hadoop.hbase.filter

    Subclasses of org.apache.hadoop.hbase.filter.FilterBase in in org.apache.hadoop.hbase.filter
    Modifier and Type
    Class
    Description
    class 
    org.apache.hadoop.hbase.filter.ColumnCountGetFilter
    Simple filter that returns first N columns on row only.
    class 
    org.apache.hadoop.hbase.filter.ColumnPaginationFilter
    A filter, based on the ColumnCountGetFilter, takes two arguments: limit and offset.
    class 
    org.apache.hadoop.hbase.filter.ColumnPrefixFilter
    This filter is used for selecting only those keys with columns that matches a particular prefix.
    class 
    org.apache.hadoop.hbase.filter.ColumnRangeFilter
    This filter is used for selecting only those keys with columns that are between minColumn to maxColumn.
    class 
    org.apache.hadoop.hbase.filter.ColumnValueFilter
    Different from SingleColumnValueFilter which returns an entire row when specified condition is matched, ColumnValueFilter return the matched cell only.
    class 
    org.apache.hadoop.hbase.filter.CompareFilter
    This is a generic filter to be used to filter by comparison.
    class 
    org.apache.hadoop.hbase.filter.DependentColumnFilter
    A filter for adding inter-column timestamp matching Only cells with a correspondingly timestamped entry in the target column will be retained Not compatible with Scan.setBatch as operations need full rows for correct filtering
    class 
    org.apache.hadoop.hbase.filter.FamilyFilter
    This filter is used to filter based on the column family.
    class 
    org.apache.hadoop.hbase.filter.FilterAllFilter
     
    final class 
    org.apache.hadoop.hbase.filter.FilterList
    Implementation of Filter that represents an ordered List of Filters which will be evaluated with a specified boolean operator FilterList.Operator.MUST_PASS_ALL (AND) or FilterList.Operator.MUST_PASS_ONE (OR).
    class 
    org.apache.hadoop.hbase.filter.FilterListBase
    Base class for FilterList.
    class 
    org.apache.hadoop.hbase.filter.FilterListWithAND
    FilterListWithAND represents an ordered list of filters which will be evaluated with an AND operator.
    class 
    org.apache.hadoop.hbase.filter.FilterListWithOR
    FilterListWithOR represents an ordered list of filters which will be evaluated with an OR operator.
    class 
    org.apache.hadoop.hbase.filter.FirstKeyOnlyFilter
    A filter that will only return the first KV from each row.
    class 
    org.apache.hadoop.hbase.filter.FuzzyRowFilter
    This is optimized version of a standard FuzzyRowFilter Filters data based on fuzzy row key.
    class 
    org.apache.hadoop.hbase.filter.InclusiveStopFilter
    A Filter that stops after the given row.
    class 
    org.apache.hadoop.hbase.filter.KeyOnlyFilter
    A filter that will only return the key component of each KV (the value will be rewritten as empty).
    class 
    org.apache.hadoop.hbase.filter.MultipleColumnPrefixFilter
    This filter is used for selecting only those keys with columns that match any of the given prefixes.
    class 
    org.apache.hadoop.hbase.filter.MultiRowRangeFilter
    Filter to support scan multiple row key ranges.
    class 
    org.apache.hadoop.hbase.filter.PageFilter
    Implementation of Filter interface that limits results to a specific page size.
    class 
    org.apache.hadoop.hbase.filter.PrefixFilter
    Pass results that have same row prefix.
    class 
    org.apache.hadoop.hbase.filter.QualifierFilter
    This filter is used to filter based on the column qualifier.
    class 
    org.apache.hadoop.hbase.filter.RandomRowFilter
    A filter that includes rows based on a chance.
    class 
    org.apache.hadoop.hbase.filter.RowFilter
    This filter is used to filter based on the key.
    class 
    org.apache.hadoop.hbase.filter.SingleColumnValueExcludeFilter
    A Filter that checks a single column value, but does not emit the tested column.
    class 
    org.apache.hadoop.hbase.filter.SingleColumnValueFilter
    This filter is used to filter cells based on value.
    class 
    org.apache.hadoop.hbase.filter.SkipFilter
    A wrapper filter that filters an entire row if any of the Cell checks do not pass.
    class 
    org.apache.hadoop.hbase.filter.TimestampsFilter
    Filter that returns only cells whose timestamp (version) is in the specified list of timestamps (versions).
    class 
    org.apache.hadoop.hbase.filter.ValueFilter
    This filter is used to filter based on column value.
    class 
    org.apache.hadoop.hbase.filter.WhileMatchFilter
    A wrapper filter that returns true from WhileMatchFilter.filterAllRemaining() as soon as the wrapped filters Filter.filterRowKey(Cell), Filter.filterCell(org.apache.hadoop.hbase.Cell), Filter.filterRow() or Filter.filterAllRemaining() methods returns true.