public final class ColumnRangeFilter extends ScanFilter
This filter is only compatible with HBase 0.92 and newer.
| Constructor and Description |
|---|
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.
|
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.