|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.hbase.async.ScanFilter
org.hbase.async.ColumnRangeFilter
public final class ColumnRangeFilter
Filters based on a range of column qualifiers.
This filter is only compatible with HBase 0.92 and newer.
Constructor Summary | |
---|---|
ColumnRangeFilter(byte[] start_column,
boolean start_inclusive,
byte[] stop_column,
boolean stop_inclusive)
Constructor. |
|
ColumnRangeFilter(byte[] start_column,
byte[] stop_column)
Constructor. |
|
ColumnRangeFilter(String start_column,
boolean start_inclusive,
String stop_column,
boolean stop_inclusive)
Constructor for UTF-8 strings. |
|
ColumnRangeFilter(String start_column,
String stop_column)
Constructor for UTF-8 strings. |
Method Summary | |
---|---|
com.mapr.fs.proto.Dbfilters.FilterMsg |
getFilterMsg()
|
String |
toString()
|
Methods inherited from class org.hbase.async.ScanFilter |
---|
getFilterId |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public ColumnRangeFilter(String start_column, String stop_column)
ColumnRangeFilter
(start_column, true, stop_inclusive, true)
public ColumnRangeFilter(byte[] start_column, byte[] stop_column)
ColumnRangeFilter
(start_column, true, stop_inclusive, true)
public ColumnRangeFilter(String start_column, boolean start_inclusive, String stop_column, boolean stop_inclusive)
start_column
- The column from which to start returning values.
If null
, start scanning from the beginning of the row.start_inclusive
- If true
, the start column is inclusive.stop_column
- The column up to which to return values.
If null
, continue scanning until the end of the row.stop_inclusive
- If true
, the stop column is inclusive.public ColumnRangeFilter(byte[] start_column, boolean start_inclusive, byte[] stop_column, boolean stop_inclusive)
start_column
- The column from which to start returning values.
If null
, start scanning from the beginning of the row.start_inclusive
- If true
, the start column is inclusive.stop_column
- The column up to which to return values.
If null
, continue scanning until the end of the row.stop_inclusive
- If true
, the stop column is inclusive.Method Detail |
---|
public String toString()
toString
in class Object
public com.mapr.fs.proto.Dbfilters.FilterMsg getFilterMsg() throws Exception
Exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |