Uses of Interface
org.apache.hadoop.hbase.util.ByteRange

Packages that use ByteRange
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.codec.prefixtree.encode   
org.apache.hadoop.hbase.codec.prefixtree.encode.column   
org.apache.hadoop.hbase.codec.prefixtree.encode.tokenize   
org.apache.hadoop.hbase.util   
org.apache.hadoop.hbase.util.byterange   
org.apache.hadoop.hbase.util.byterange.impl   
 

Uses of ByteRange in org.apache.hadoop.hbase
 

Methods in org.apache.hadoop.hbase that return ByteRange
static ByteRange CellUtil.fillFamilyRange(Cell cell, ByteRange range)
           
static ByteRange CellUtil.fillQualifierRange(Cell cell, ByteRange range)
           
static ByteRange CellUtil.fillRowRange(Cell cell, ByteRange range)
          ByteRange
static ByteRange CellUtil.fillTagRange(Cell cell, ByteRange range)
           
 

Methods in org.apache.hadoop.hbase with parameters of type ByteRange
static ByteRange CellUtil.fillFamilyRange(Cell cell, ByteRange range)
           
static ByteRange CellUtil.fillQualifierRange(Cell cell, ByteRange range)
           
static ByteRange CellUtil.fillRowRange(Cell cell, ByteRange range)
          ByteRange
static ByteRange CellUtil.fillTagRange(Cell cell, ByteRange range)
           
 

Uses of ByteRange in org.apache.hadoop.hbase.codec.prefixtree.encode
 

Fields in org.apache.hadoop.hbase.codec.prefixtree.encode declared as ByteRange
protected  ByteRange PrefixTreeEncoder.familyRange
           
protected  ByteRange PrefixTreeEncoder.qualifierRange
           
protected  ByteRange PrefixTreeEncoder.rowRange
           
protected  ByteRange PrefixTreeEncoder.tagsRange
           
 

Methods in org.apache.hadoop.hbase.codec.prefixtree.encode that return ByteRange
 ByteRange PrefixTreeEncoder.getValueByteRange()
           
 

Uses of ByteRange in org.apache.hadoop.hbase.codec.prefixtree.encode.column
 

Methods in org.apache.hadoop.hbase.codec.prefixtree.encode.column with parameters of type ByteRange
 void ColumnNodeWriter.setTokenBytes(ByteRange source)
           
 

Uses of ByteRange in org.apache.hadoop.hbase.codec.prefixtree.encode.tokenize
 

Fields in org.apache.hadoop.hbase.codec.prefixtree.encode.tokenize declared as ByteRange
protected  ByteRange TokenizerNode.token
           
 

Methods in org.apache.hadoop.hbase.codec.prefixtree.encode.tokenize that return ByteRange
 ByteRange TokenizerNode.getToken()
           
 

Methods in org.apache.hadoop.hbase.codec.prefixtree.encode.tokenize with parameters of type ByteRange
protected  TokenizerNode Tokenizer.addNode(TokenizerNode parent, int nodeDepth, int tokenStartOffset, ByteRange token, int inputTokenOffset)
           
 void TokenizerNode.addSorted(ByteRange bytes)
          building
 void Tokenizer.addSorted(ByteRange bytes)
           
protected  int Tokenizer.appendTokenAndRepointByteRange(ByteRange token, int inputTokenOffset)
           
protected  boolean TokenizerNode.matchesToken(ByteRange bytes)
           
protected  int TokenizerNode.numIdenticalBytes(ByteRange bytes)
           
protected  boolean TokenizerNode.partiallyMatchesToken(ByteRange bytes)
          byte[] utils
 void TokenizerNode.setToken(ByteRange token)
           
protected  void TokenizerNode.split(int numTokenBytesToRetain, ByteRange bytes)
          Called when we need to convert a leaf node into a branch with 2 leaves.
 

Method parameters in org.apache.hadoop.hbase.codec.prefixtree.encode.tokenize with type arguments of type ByteRange
 void Tokenizer.addAll(ArrayList<ByteRange> sortedByteRanges)
          building
 

Uses of ByteRange in org.apache.hadoop.hbase.util
 

Subinterfaces of ByteRange in org.apache.hadoop.hbase.util
 interface PositionedByteRange
           Extends ByteRange with additional methods to support tracking a consumers position within the viewport.
 

Classes in org.apache.hadoop.hbase.util that implement ByteRange
 class SimpleByteRange
          A basic ByteRange implementation.
 class SimplePositionedByteRange
          Extends the basic SimpleByteRange implementation with position support.
 

Methods in org.apache.hadoop.hbase.util that return ByteRange
 ByteRange SimpleByteRange.deepCopy()
           
 ByteRange ByteRange.deepCopy()
          Create a new ByteRange with new backing byte[] containing a copy of the content from this range's window.
 ByteRange SimpleByteRange.get(int index, byte[] dst)
           
 ByteRange ByteRange.get(int index, byte[] dst)
          Fill dst with bytes from the range, starting from index.
 ByteRange SimpleByteRange.get(int index, byte[] dst, int offset, int length)
           
 ByteRange ByteRange.get(int index, byte[] dst, int offset, int length)
          Fill dst with bytes from the range, starting from index.
 ByteRange SimpleByteRange.put(int index, byte val)
           
 ByteRange ByteRange.put(int index, byte val)
          Store val at index.
 ByteRange SimpleByteRange.put(int index, byte[] val)
           
 ByteRange ByteRange.put(int index, byte[] val)
          Store val at index.
 ByteRange SimpleByteRange.put(int index, byte[] val, int offset, int length)
           
 ByteRange ByteRange.put(int index, byte[] val, int offset, int length)
          Store length bytes from val into this range, starting at index.
 ByteRange SimpleByteRange.set(byte[] bytes)
           
 ByteRange ByteRange.set(byte[] bytes)
          Reuse this ByteRange over a new byte[].
 ByteRange SimpleByteRange.set(byte[] bytes, int offset, int length)
           
 ByteRange ByteRange.set(byte[] bytes, int offset, int length)
          Reuse this ByteRange over a new byte[].
 ByteRange SimpleByteRange.set(int capacity)
           
 ByteRange ByteRange.set(int capacity)
          Reuse this ByteRange over a new byte[].
 ByteRange SimpleByteRange.setLength(int length)
           
 ByteRange ByteRange.setLength(int length)
          Update the length of this range.
 ByteRange SimpleByteRange.setOffset(int offset)
           
 ByteRange ByteRange.setOffset(int offset)
          Update the beginning of this range.
 ByteRange SimpleByteRange.shallowCopy()
           
 ByteRange ByteRange.shallowCopy()
          Create a new ByteRange that points at this range's byte[].
 ByteRange SimpleByteRange.shallowCopySubRange(int innerOffset, int copyLength)
           
 ByteRange ByteRange.shallowCopySubRange(int innerOffset, int copyLength)
          Create a new ByteRange that points at this range's byte[].
 ByteRange SimpleByteRange.unset()
           
 ByteRange ByteRange.unset()
          Nullifies this ByteRange.
 

Methods in org.apache.hadoop.hbase.util that return types with arguments of type ByteRange
static ArrayList<ByteRange> ByteRangeUtils.fromArrays(Collection<byte[]> arrays)
           
 

Methods in org.apache.hadoop.hbase.util with parameters of type ByteRange
 int SimpleByteRange.compareTo(ByteRange other)
          Bitwise comparison of each byte in the array.
static boolean SimpleByteRange.isEmpty(ByteRange range)
           
static int ByteRangeUtils.numEqualPrefixBytes(ByteRange left, ByteRange right, int rightInnerOffset)
           
static void ByteRangeUtils.write(OutputStream os, ByteRange byteRange)
           
static void ByteRangeUtils.write(OutputStream os, ByteRange byteRange, int byteRangeInnerOffset)
           
 

Method parameters in org.apache.hadoop.hbase.util with type arguments of type ByteRange
static ArrayList<byte[]> ByteRangeUtils.copyToNewArrays(Collection<ByteRange> ranges)
           
 

Uses of ByteRange in org.apache.hadoop.hbase.util.byterange
 

Fields in org.apache.hadoop.hbase.util.byterange with type parameters of type ByteRange
protected  ArrayList<ByteRange> ByteRangeSet.sortedRanges
           
protected  Map<ByteRange,Integer> ByteRangeSet.uniqueIndexByUniqueRange
           
protected  ArrayList<ByteRange> ByteRangeSet.uniqueRanges
           
 

Methods in org.apache.hadoop.hbase.util.byterange that return types with arguments of type ByteRange
 ArrayList<ByteRange> ByteRangeSet.getSortedRanges()
          get/set
 

Methods in org.apache.hadoop.hbase.util.byterange with parameters of type ByteRange
 void ByteRangeSet.add(ByteRange bytes)
          Check if the incoming byte range exists.
protected  int ByteRangeSet.store(ByteRange bytes)
           
 

Uses of ByteRange in org.apache.hadoop.hbase.util.byterange.impl
 

Constructor parameters in org.apache.hadoop.hbase.util.byterange.impl with type arguments of type ByteRange
ByteRangeHashSet(List<ByteRange> rawByteArrays)
           
ByteRangeTreeSet(List<ByteRange> rawByteArrays)
           
 



Copyright © 2007–2016 The Apache Software Foundation. All rights reserved.