@InterfaceAudience.Public @InterfaceStability.Evolving public class FuzzyRowFilter extends FilterBase
Filter.ReturnCode| Constructor and Description |
|---|
FuzzyRowFilter(List<Pair<byte[],byte[]>> fuzzyKeysData) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
boolean |
filterAllRemaining()
Filters that never filter all remaining can inherit this implementation that
never stops the filter early.
|
Filter.ReturnCode |
filterKeyValue(Cell c)
A way to filter based on the column family, column qualifier and/or the column value.
|
Cell |
getNextCellHint(Cell currentCell)
Filters that are not sure which key must be next seeked to, can inherit
this implementation that, by default, returns a null Cell.
|
int |
hashCode() |
static FuzzyRowFilter |
parseFrom(byte[] pbBytes) |
byte[] |
toByteArray()
Return length 0 byte array for Filters that don't require special serialization
|
String |
toString()
Return filter's info for debugging and logging purpose.
|
createFilterFromArguments, filterRow, filterRowCells, filterRowKey, getNextKeyHint, hasFilterRow, isFamilyEssential, reset, transform, transformCellisReversed, setReversedpublic Filter.ReturnCode filterKeyValue(Cell c)
FilterReturnCode.NEXT_ROW, it should return
ReturnCode.NEXT_ROW until Filter.reset() is called just in case the caller calls
for the next row.
Concrete implementers can signal a failure condition in their code by throwing an
IOException.filterKeyValue in class Filterc - the Cell in questionFilter.ReturnCodepublic Cell getNextCellHint(Cell currentCell)
FilterBaseIOException.getNextCellHint in class FilterBasepublic boolean filterAllRemaining()
FilterBaseIOException.filterAllRemaining in class FilterBasepublic byte[] toByteArray()
FilterBasetoByteArray in class FilterBasepublic static FuzzyRowFilter parseFrom(byte[] pbBytes) throws DeserializationException
pbBytes - A pb serialized FuzzyRowFilter instanceFuzzyRowFilter made from bytesDeserializationExceptiontoByteArray()public String toString()
FilterBasetoString in class FilterBaseCopyright © 2007–2019 The Apache Software Foundation. All rights reserved.