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 ScanWildcardColumnTracker.checkColumn(byte[] bytes, int offset, int length, byte type)
          Checks if the column is present in the list of requested columns by returning the match code instance.
 ScanQueryMatcher.MatchCode ExplicitColumnTracker.checkColumn(byte[] bytes, int offset, int length, byte type)
          Checks if the column is present in the list of requested columns by returning the match code instance.
 ScanQueryMatcher.MatchCode ColumnTracker.checkColumn(byte[] bytes, int offset, int length, byte type)
          Checks if the column is present in the list of requested columns by returning the match code instance.
 ScanQueryMatcher.MatchCode ScanWildcardColumnTracker.checkVersions(byte[] bytes, int offset, int length, long timestamp, byte type, boolean ignoreCount)
          Keeps track of the number of versions for the columns asked for.
 ScanQueryMatcher.MatchCode ExplicitColumnTracker.checkVersions(byte[] bytes, int offset, int length, long timestamp, byte type, boolean ignoreCount)
           
 ScanQueryMatcher.MatchCode ColumnTracker.checkVersions(byte[] bytes, int offset, int length, long ttl, byte type, boolean ignoreCount)
          Keeps track of the number of versions for the columns asked for.
 ScanQueryMatcher.MatchCode ScanWildcardColumnTracker.getNextRowOrNextColumn(byte[] bytes, int offset, int qualLength)
           
 ScanQueryMatcher.MatchCode ExplicitColumnTracker.getNextRowOrNextColumn(byte[] bytes, int offset, int qualLength)
           
 ScanQueryMatcher.MatchCode ColumnTracker.getNextRowOrNextColumn(byte[] bytes, int offset, int qualLength)
          Retrieve the MatchCode for the next row or column
 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 © 2015 The Apache Software Foundation. All rights reserved.