@InterfaceAudience.Public public class FamilyFilter extends CompareFilter
This filter is used to filter based on the column family. It takes an operator (equal, greater, not equal, etc) and a byte [] comparator for the column family portion of a key.
This filter can be wrapped with WhileMatchFilter and SkipFilter
to add more control.
Multiple filters can be combined using FilterList.
Get.addFamily(byte[])
directly rather than a filter.CompareFilter.CompareOpFilter.ReturnCodecomparator, op| 构造器和说明 |
|---|
FamilyFilter(CompareFilter.CompareOp familyCompareOp,
ByteArrayComparable familyComparator)
已过时。
Since 2.0.0. Will be removed in 3.0.0.
Use
FamilyFilter(CompareOperator, ByteArrayComparable) |
FamilyFilter(CompareOperator op,
ByteArrayComparable familyComparator)
Constructor.
|
| 限定符和类型 | 方法和说明 |
|---|---|
static Filter |
createFilterFromArguments(ArrayList<byte[]> filterArguments) |
boolean |
equals(Object obj) |
Filter.ReturnCode |
filterCell(Cell c)
A way to filter based on the column family, column qualifier and/or the column value.
|
Filter.ReturnCode |
filterKeyValue(Cell c)
已过时。
|
int |
hashCode() |
static FamilyFilter |
parseFrom(byte[] pbBytes) |
byte[] |
toByteArray()
Return length 0 byte array for Filters that don't require special serialization
|
compareFamily, compareFamily, compareQualifier, compareQualifier, compareRow, compareRow, compareValue, compareValue, extractArguments, filterRowKey, getComparator, getCompareOperator, getOperator, toStringfilterAllRemaining, filterRow, filterRowCells, filterRowKey, getNextCellHint, hasFilterRow, isFamilyEssential, reset, transformCellisReversed, setReversed@Deprecated public FamilyFilter(CompareFilter.CompareOp familyCompareOp, ByteArrayComparable familyComparator)
FamilyFilter(CompareOperator, ByteArrayComparable)familyCompareOp - the compare op for column family matchingfamilyComparator - the comparator for column family matchingpublic FamilyFilter(CompareOperator op, ByteArrayComparable familyComparator)
op - the compare op for column family matchingfamilyComparator - the comparator for column family matching@Deprecated public 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 在类中 Filterc - the Cell in questionFilter.ReturnCodepublic Filter.ReturnCode filterCell(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.filterCell 在类中 Filterc - the Cell in questionFilter.ReturnCodepublic static Filter createFilterFromArguments(ArrayList<byte[]> filterArguments)
public byte[] toByteArray()
FilterBasetoByteArray 在类中 FilterBasepublic static FamilyFilter parseFrom(byte[] pbBytes) throws DeserializationException
pbBytes - A pb serialized FamilyFilter instanceFamilyFilter made from bytesDeserializationExceptiontoByteArray()public boolean equals(Object obj)
equals 在类中 CompareFilterpublic int hashCode()
hashCode 在类中 CompareFilterCopyright © 2007–2020 The Apache Software Foundation. All rights reserved.