Uses of Class
org.apache.hadoop.hbase.regionserver.ScanQueryMatcher.MatchCode

Packages that use ScanQueryMatcher.MatchCode
org.apache.hadoop.hbase.regionserver   
 

Uses of ScanQueryMatcher.MatchCode in org.apache.hadoop.hbase.regionserver
 

Methods in org.apache.hadoop.hbase.regionserver that return ScanQueryMatcher.MatchCode
 ScanQueryMatcher.MatchCode ColumnTracker.checkColumn(byte[] bytes, int offset, int length, long timestamp)
          Keeps track of the number of versions for the columns asked for
 ScanQueryMatcher.MatchCode ExplicitColumnTracker.checkColumn(byte[] bytes, int offset, int length, long timestamp)
          Checks against the parameters of the query and the columns which have already been processed by this query.
 ScanQueryMatcher.MatchCode ScanWildcardColumnTracker.checkColumn(byte[] bytes, int offset, int length, long timestamp)
          Can only return INCLUDE or SKIP, since returning "NEXT" or "DONE" would imply we have finished with this row, when this class can't figure that out.
 ScanQueryMatcher.MatchCode ScanQueryMatcher.getNextRowOrNextColumn(byte[] bytes, int offset, int qualLength)
           
 ScanQueryMatcher.MatchCode ScanQueryMatcher.match(KeyValue kv)
          Determines if the caller should do one of several things: - seek/skip to the next row (MatchCode.SEEK_NEXT_ROW) - seek/skip to the next column (MatchCode.SEEK_NEXT_COL) - include the current KeyValue (MatchCode.INCLUDE) - ignore the current KeyValue (MatchCode.SKIP) - got to the next row (MatchCode.DONE)
static ScanQueryMatcher.MatchCode ScanQueryMatcher.MatchCode.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ScanQueryMatcher.MatchCode[] ScanQueryMatcher.MatchCode.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 



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