Uses of Interface
org.apache.hadoop.hbase.util.ByteRange
-
Uses of org.apache.hadoop.hbase.util.ByteRange in org.apache.hadoop.hbase
Modifier and TypeMethodDescriptionstatic org.apache.hadoop.hbase.util.ByteRange
CellUtil.fillFamilyRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) Deprecated.As of HBase-2.0.static org.apache.hadoop.hbase.util.ByteRange
PrivateCellUtil.fillFamilyRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) static org.apache.hadoop.hbase.util.ByteRange
CellUtil.fillQualifierRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) Deprecated.As of HBase-2.0.static org.apache.hadoop.hbase.util.ByteRange
PrivateCellUtil.fillQualifierRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) static org.apache.hadoop.hbase.util.ByteRange
CellUtil.fillRowRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) Deprecated.As of HBase-2.0.static org.apache.hadoop.hbase.util.ByteRange
PrivateCellUtil.fillRowRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) ByteRangestatic org.apache.hadoop.hbase.util.ByteRange
CellUtil.fillTagRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) Deprecated.As of HBase-2.0.static org.apache.hadoop.hbase.util.ByteRange
PrivateCellUtil.fillTagRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) static org.apache.hadoop.hbase.util.ByteRange
CellUtil.fillValueRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) Deprecated.As of HBase-2.0.static org.apache.hadoop.hbase.util.ByteRange
PrivateCellUtil.fillValueRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) Modifier and TypeMethodDescriptionstatic org.apache.hadoop.hbase.util.ByteRange
CellUtil.fillFamilyRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) Deprecated.As of HBase-2.0.static org.apache.hadoop.hbase.util.ByteRange
PrivateCellUtil.fillFamilyRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) static org.apache.hadoop.hbase.util.ByteRange
CellUtil.fillQualifierRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) Deprecated.As of HBase-2.0.static org.apache.hadoop.hbase.util.ByteRange
PrivateCellUtil.fillQualifierRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) static org.apache.hadoop.hbase.util.ByteRange
CellUtil.fillRowRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) Deprecated.As of HBase-2.0.static org.apache.hadoop.hbase.util.ByteRange
PrivateCellUtil.fillRowRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) ByteRangestatic org.apache.hadoop.hbase.util.ByteRange
CellUtil.fillTagRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) Deprecated.As of HBase-2.0.static org.apache.hadoop.hbase.util.ByteRange
PrivateCellUtil.fillTagRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) static org.apache.hadoop.hbase.util.ByteRange
CellUtil.fillValueRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) Deprecated.As of HBase-2.0.static org.apache.hadoop.hbase.util.ByteRange
PrivateCellUtil.fillValueRange
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.util.ByteRange range) -
Uses of org.apache.hadoop.hbase.util.ByteRange in org.apache.hadoop.hbase.util
Modifier and TypeInterfaceDescriptioninterface
org.apache.hadoop.hbase.util.PositionedByteRange
ExtendsByteRange
with additional methods to support tracking a consumers position within the viewport.Modifier and TypeClassDescriptionclass
org.apache.hadoop.hbase.util.AbstractByteRange
An abstract implementation of the ByteRange APIclass
org.apache.hadoop.hbase.util.AbstractPositionedByteRange
Extends the basicSimpleByteRange
implementation with position support.class
org.apache.hadoop.hbase.util.SimpleByteRange
A read only version of theByteRange
.class
org.apache.hadoop.hbase.util.SimpleMutableByteRange
A basic mutableByteRange
implementation.class
org.apache.hadoop.hbase.util.SimplePositionedByteRange
Extends the basicSimpleMutableByteRange
implementation with position support and it is a readonly version.class
org.apache.hadoop.hbase.util.SimplePositionedMutableByteRange
Extends the basicAbstractPositionedByteRange
implementation with position support and it is a mutable version.Modifier and TypeMethodDescriptionorg.apache.hadoop.hbase.util.ByteRange
ByteRange.deepCopy()
Create a newByteRange
with new backing byte[] containing a copy of the content fromthis
range's window.org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.deepCopy()
org.apache.hadoop.hbase.util.ByteRange
SimpleMutableByteRange.deepCopy()
org.apache.hadoop.hbase.util.ByteRange
AbstractByteRange.get
(int index, byte[] dst) org.apache.hadoop.hbase.util.ByteRange
AbstractByteRange.get
(int index, byte[] dst, int offset, int length) org.apache.hadoop.hbase.util.ByteRange
ByteRange.get
(int index, byte[] dst) Filldst
with bytes from the range, starting fromindex
.org.apache.hadoop.hbase.util.ByteRange
ByteRange.get
(int index, byte[] dst, int offset, int length) Filldst
with bytes from the range, starting fromindex
.org.apache.hadoop.hbase.util.ByteRange
ByteRange.put
(int index, byte val) Storeval
atindex
.org.apache.hadoop.hbase.util.ByteRange
ByteRange.put
(int index, byte[] val) Storeval
atindex
.org.apache.hadoop.hbase.util.ByteRange
ByteRange.put
(int index, byte[] val, int offset, int length) Storelength
bytes fromval
into this range, starting atindex
.org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.put
(int index, byte val) org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.put
(int index, byte[] val) org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.put
(int index, byte[] val, int offset, int length) org.apache.hadoop.hbase.util.ByteRange
SimpleMutableByteRange.put
(int index, byte val) org.apache.hadoop.hbase.util.ByteRange
SimpleMutableByteRange.put
(int index, byte[] val) org.apache.hadoop.hbase.util.ByteRange
SimpleMutableByteRange.put
(int index, byte[] val, int offset, int length) org.apache.hadoop.hbase.util.ByteRange
ByteRange.putInt
(int index, int val) Store the int value atindex
org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.putInt
(int index, int val) org.apache.hadoop.hbase.util.ByteRange
SimpleMutableByteRange.putInt
(int index, int val) org.apache.hadoop.hbase.util.ByteRange
ByteRange.putLong
(int index, long val) Store the long value atindex
org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.putLong
(int index, long val) org.apache.hadoop.hbase.util.ByteRange
SimpleMutableByteRange.putLong
(int index, long val) org.apache.hadoop.hbase.util.ByteRange
ByteRange.putShort
(int index, short val) Store the short value atindex
org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.putShort
(int index, short val) org.apache.hadoop.hbase.util.ByteRange
SimpleMutableByteRange.putShort
(int index, short val) org.apache.hadoop.hbase.util.ByteRange
AbstractByteRange.set
(byte[] bytes) org.apache.hadoop.hbase.util.ByteRange
AbstractByteRange.set
(byte[] bytes, int offset, int length) org.apache.hadoop.hbase.util.ByteRange
AbstractByteRange.set
(int capacity) org.apache.hadoop.hbase.util.ByteRange
ByteRange.set
(byte[] bytes) Reuse thisByteRange
over a new byte[].org.apache.hadoop.hbase.util.ByteRange
ByteRange.set
(byte[] bytes, int offset, int length) Reuse thisByteRange
over a new byte[].org.apache.hadoop.hbase.util.ByteRange
ByteRange.set
(int capacity) Reuse thisByteRange
over a new byte[].org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.set
(byte[] bytes) org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.set
(byte[] bytes, int offset, int length) org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.set
(int capacity) org.apache.hadoop.hbase.util.ByteRange
AbstractByteRange.setLength
(int length) org.apache.hadoop.hbase.util.ByteRange
ByteRange.setLength
(int length) Update the length of this range.org.apache.hadoop.hbase.util.ByteRange
AbstractByteRange.setOffset
(int offset) org.apache.hadoop.hbase.util.ByteRange
ByteRange.setOffset
(int offset) Update the beginning of this range.org.apache.hadoop.hbase.util.ByteRange
ByteRange.shallowCopy()
Create a newByteRange
that points at this range's byte[].org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.shallowCopy()
org.apache.hadoop.hbase.util.ByteRange
SimpleMutableByteRange.shallowCopy()
org.apache.hadoop.hbase.util.ByteRange
ByteRange.shallowCopySubRange
(int innerOffset, int copyLength) Create a newByteRange
that points at this range's byte[].org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.shallowCopySubRange
(int innerOffset, int copyLength) org.apache.hadoop.hbase.util.ByteRange
SimpleMutableByteRange.shallowCopySubRange
(int innerOffset, int copyLength) org.apache.hadoop.hbase.util.ByteRange
ByteRange.unset()
Nullifies this ByteRange.org.apache.hadoop.hbase.util.ByteRange
SimpleByteRange.unset()
org.apache.hadoop.hbase.util.ByteRange
SimpleMutableByteRange.unset()
Modifier and TypeMethodDescriptionstatic ArrayList<org.apache.hadoop.hbase.util.ByteRange>
ByteRangeUtils.fromArrays
(Collection<byte[]> arrays) Modifier and TypeMethodDescriptionint
AbstractByteRange.compareTo
(org.apache.hadoop.hbase.util.ByteRange other) Bitwise comparison of each byte in the array.static boolean
AbstractByteRange.isEmpty
(org.apache.hadoop.hbase.util.ByteRange range) Returns true whenrange
is of zero length, false otherwise.static int
ByteRangeUtils.numEqualPrefixBytes
(org.apache.hadoop.hbase.util.ByteRange left, org.apache.hadoop.hbase.util.ByteRange right, int rightInnerOffset) static void
ByteRangeUtils.write
(OutputStream os, org.apache.hadoop.hbase.util.ByteRange byteRange) static void
ByteRangeUtils.write
(OutputStream os, org.apache.hadoop.hbase.util.ByteRange byteRange, int byteRangeInnerOffset) Modifier and TypeMethodDescriptionstatic ArrayList<byte[]>
ByteRangeUtils.copyToNewArrays
(Collection<org.apache.hadoop.hbase.util.ByteRange> ranges)