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

Packages that use ByteRange
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.util   
 

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
 

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
 

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 ByteRange.deepCopy()
          Create a new ByteRange with new backing byte[] containing a copy of the content from this range's window.
 ByteRange SimpleByteRange.deepCopy()
           
 ByteRange ByteRange.get(int index, byte[] dst)
          Fill dst with bytes from the range, starting from index.
 ByteRange SimpleByteRange.get(int index, byte[] dst)
           
 ByteRange ByteRange.get(int index, byte[] dst, int offset, int length)
          Fill dst with bytes from the range, starting from index.
 ByteRange SimpleByteRange.get(int index, byte[] dst, int offset, int length)
           
 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)
           
 ByteRange ByteRange.put(int index, byte[] val, int offset, int length)
          Store length bytes from val into this range, starting at index.
 ByteRange SimpleByteRange.put(int index, byte[] val, int offset, int length)
           
 ByteRange ByteRange.set(byte[] bytes)
          Reuse this ByteRange over a new byte[].
 ByteRange SimpleByteRange.set(byte[] bytes)
           
 ByteRange ByteRange.set(byte[] bytes, int offset, int length)
          Reuse this ByteRange over a new byte[].
 ByteRange SimpleByteRange.set(byte[] bytes, int offset, int length)
           
 ByteRange ByteRange.set(int capacity)
          Reuse this ByteRange over a new byte[].
 ByteRange SimpleByteRange.set(int capacity)
           
 ByteRange ByteRange.setLength(int length)
          Update the length of this range.
 ByteRange SimpleByteRange.setLength(int length)
           
 ByteRange ByteRange.setOffset(int offset)
          Update the beginning of this range.
 ByteRange SimpleByteRange.setOffset(int offset)
           
 ByteRange ByteRange.shallowCopy()
          Create a new ByteRange that points at this range's byte[].
 ByteRange SimpleByteRange.shallowCopy()
           
 ByteRange ByteRange.shallowCopySubRange(int innerOffset, int copyLength)
          Create a new ByteRange that points at this range's byte[].
 ByteRange SimpleByteRange.shallowCopySubRange(int innerOffset, int copyLength)
           
 ByteRange ByteRange.unset()
          Nullifies this ByteRange.
 ByteRange SimpleByteRange.unset()
           
 

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)
           
 



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