Uses of Class
org.apache.hadoop.hbase.filter.ByteArrayComparable

Packages that use ByteArrayComparable
org.apache.hadoop.hbase.filter Provides row-level filters applied to HRegion scan results during calls to ResultScanner.next()
org.apache.hadoop.hbase.protobuf Holds classes generated from protobuf src/main/protobuf definition files. 
 

Uses of ByteArrayComparable in org.apache.hadoop.hbase.filter
 

Subclasses of ByteArrayComparable in org.apache.hadoop.hbase.filter
 class BinaryComparator
          A binary comparator which lexicographically compares against the specified byte array using Bytes.compareTo(byte[], byte[]).
 class BinaryPrefixComparator
          A comparator which compares against a specified byte array, but only compares up to the length of this byte array.
 class BitComparator
          A bit comparator which performs the specified bitwise operation on each of the bytes with the specified byte array.
 class NullComparator
          A binary comparator which lexicographically compares against the specified byte array using Bytes.compareTo(byte[], byte[]).
 class RegexStringComparator
          This comparator is for use with CompareFilter implementations, such as RowFilter, QualifierFilter, and ValueFilter, for filtering based on the value of a given column.
 class SubstringComparator
          This comparator is for use with SingleColumnValueFilter, for filtering based on the value of a given column.
 

Fields in org.apache.hadoop.hbase.filter declared as ByteArrayComparable
protected  ByteArrayComparable SingleColumnValueFilter.comparator
           
protected  ByteArrayComparable CompareFilter.comparator
           
 

Methods in org.apache.hadoop.hbase.filter that return ByteArrayComparable
static ByteArrayComparable ParseFilter.createComparator(byte[] comparator)
          Parses a comparator of the form comparatorType:comparatorValue form and returns a comparator
 ByteArrayComparable SingleColumnValueFilter.getComparator()
           
 ByteArrayComparable CompareFilter.getComparator()
           
static ByteArrayComparable ByteArrayComparable.parseFrom(byte[] pbBytes)
           
 

Methods in org.apache.hadoop.hbase.filter with parameters of type ByteArrayComparable
protected  boolean CompareFilter.doCompare(CompareFilter.CompareOp compareOp, ByteArrayComparable comparator, byte[] data, int offset, int length)
           
 

Constructors in org.apache.hadoop.hbase.filter with parameters of type ByteArrayComparable
CompareFilter(CompareFilter.CompareOp compareOp, ByteArrayComparable comparator)
          Constructor.
DependentColumnFilter(byte[] family, byte[] qualifier, boolean dropDependentColumn, CompareFilter.CompareOp valueCompareOp, ByteArrayComparable valueComparator)
          Build a dependent column filter with value checking dependent column varies will be compared using the supplied compareOp and comparator, for usage of which refer to CompareFilter
FamilyFilter(CompareFilter.CompareOp familyCompareOp, ByteArrayComparable familyComparator)
          Constructor.
QualifierFilter(CompareFilter.CompareOp op, ByteArrayComparable qualifierComparator)
          Constructor.
RowFilter(CompareFilter.CompareOp rowCompareOp, ByteArrayComparable rowComparator)
          Constructor.
SingleColumnValueExcludeFilter(byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, ByteArrayComparable comparator)
          Constructor for binary compare of the value of a single column.
SingleColumnValueExcludeFilter(byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, ByteArrayComparable comparator, boolean filterIfMissing, boolean latestVersionOnly)
          Constructor for protobuf deserialization only.
SingleColumnValueFilter(byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, ByteArrayComparable comparator)
          Constructor for binary compare of the value of a single column.
SingleColumnValueFilter(byte[] family, byte[] qualifier, CompareFilter.CompareOp compareOp, ByteArrayComparable comparator, boolean filterIfMissing, boolean latestVersionOnly)
          Constructor for protobuf deserialization only.
ValueFilter(CompareFilter.CompareOp valueCompareOp, ByteArrayComparable valueComparator)
          Constructor.
 

Uses of ByteArrayComparable in org.apache.hadoop.hbase.protobuf
 

Methods in org.apache.hadoop.hbase.protobuf that return ByteArrayComparable
static ByteArrayComparable ProtobufUtil.toComparator(ComparatorProtos.Comparator proto)
          Convert a protocol buffer Comparator to a ByteArrayComparable
 

Methods in org.apache.hadoop.hbase.protobuf with parameters of type ByteArrayComparable
static ClientProtos.MutateRequest RequestConverter.buildMutateRequest(byte[] regionName, byte[] row, byte[] family, byte[] qualifier, ByteArrayComparable comparator, HBaseProtos.CompareType compareType, Delete delete)
          Create a protocol buffer MutateRequest for a conditioned delete
static ClientProtos.MutateRequest RequestConverter.buildMutateRequest(byte[] regionName, byte[] row, byte[] family, byte[] qualifier, ByteArrayComparable comparator, HBaseProtos.CompareType compareType, Put put)
          Create a protocol buffer MutateRequest for a conditioned put
static ComparatorProtos.Comparator ProtobufUtil.toComparator(ByteArrayComparable comparator)
          Convert a ByteArrayComparable to a protocol buffer Comparator
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.