Package | Description |
---|---|
org.hbase.async |
Modifier and Type | Class and Description |
---|---|
class |
ColumnPaginationFilter
A filter, based on the ColumnCountGetFilter, takes two arguments: limit and offset.
|
class |
ColumnPrefixFilter
Sets a binary prefix to filter results based on the column qualifier.
|
class |
ColumnRangeFilter
Filters based on a range of column qualifiers.
|
class |
CompareFilter
A generic scan filter to be used to filter by comparison.
|
class |
DependentColumnFilter
Filters key values based on the existence of a dependent, or reference,
column.
|
class |
FamilyFilter
Filter columns based on the column family.
|
class |
FilterList
Combines a list of filters into one.
|
class |
FirstKeyOnlyFilter
A filter that will only return the first KV from each row.
|
class |
FuzzyRowFilter
FuzzyRowFilter is a server-side fast-forward filter that allows skipping
whole range of rows when scanning.
|
class |
KeyOnlyFilter
A filter that will only return the key component of each KV (the value will
be rewritten as empty).
|
class |
KeyRegexpFilter
Filters rows based on an expression applied to the row key.
|
class |
MultipleColumnPrefixFilter
Sets multiple binary prefix filters to filter results based on the column qualifiers.
|
class |
QualifierFilter
Filter columns based on the qualifier.
|
class |
RowFilter
Filter rows based on the rowkey.
|
class |
TimestampsFilter
Filter that returns only cells whose timestamp (version) is
in the specified list of timestamps (versions).
|
class |
ValueFilter
Filter key values based on their value.
|
Modifier and Type | Method and Description |
---|---|
ScanFilter |
Scanner.getFilter()
Returns the possibly-
null filter applied to this scanner. |
ScanFilter |
GetRequest.getFilter()
Returns the possibly-
null filter applied to cells in this row. |
Modifier and Type | Method and Description |
---|---|
List<ScanFilter> |
FilterList.filters() |
Modifier and Type | Method and Description |
---|---|
void |
Scanner.setFilter(ScanFilter filter)
Specifies the filter to apply to this scanner.
|
GetRequest |
GetRequest.setFilter(ScanFilter filter)
Specifies the filter to apply to cells in this row.
|
Constructor and Description |
---|
FilterList(List<ScanFilter> filters)
Constructor.
|
FilterList(List<ScanFilter> filters,
FilterList.Operator op)
Constructor.
|
Copyright © 2010-2017, The Async HBase Authors