org.apache.hadoop.hbase.filter
Class InclusiveStopRowFilter

java.lang.Object
  extended by org.apache.hadoop.hbase.filter.StopRowFilter
      extended by org.apache.hadoop.hbase.filter.InclusiveStopRowFilter
All Implemented Interfaces:
RowFilterInterface, Writable

public class InclusiveStopRowFilter
extends StopRowFilter


Field Summary
 
Fields inherited from class org.apache.hadoop.hbase.filter.StopRowFilter
stopRowKey
 
Constructor Summary
InclusiveStopRowFilter()
          Default constructor, filters nothing.
InclusiveStopRowFilter(Text stopRowKey)
          Constructor that takes a stopRowKey on which to filter
 
Method Summary
 boolean filter(Text rowKey)
          Filters on just a row key.
 
Methods inherited from class org.apache.hadoop.hbase.filter.StopRowFilter
filter, filterAllRemaining, filterNotNull, getStopRowKey, processAlways, readFields, reset, rowProcessed, validate, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InclusiveStopRowFilter

public InclusiveStopRowFilter()
Default constructor, filters nothing. Required though for RPC deserialization.


InclusiveStopRowFilter

public InclusiveStopRowFilter(Text stopRowKey)
Constructor that takes a stopRowKey on which to filter

Parameters:
stopRowKey - rowKey to filter on.
Method Detail

filter

public boolean filter(Text rowKey)
Description copied from class: StopRowFilter
Filters on just a row key.

Specified by:
filter in interface RowFilterInterface
Overrides:
filter in class StopRowFilter
Returns:
true if given row key is filtered and row should not be processed.


Copyright © 2006 The Apache Software Foundation