Package | Description |
---|---|
org.apache.hadoop.hbase | |
org.apache.hadoop.hbase.security.access | |
org.apache.hadoop.hbase.security.visibility | |
org.apache.hadoop.hbase.util |
Modifier and Type | Method and Description |
---|---|
static ByteRange |
CellUtil.fillFamilyRange(Cell cell,
ByteRange range)
Deprecated.
As of HBase-2.0. Will be removed in HBase-3.0.
|
static ByteRange |
PrivateCellUtil.fillFamilyRange(Cell cell,
ByteRange range) |
static ByteRange |
CellUtil.fillQualifierRange(Cell cell,
ByteRange range)
Deprecated.
As of HBase-2.0. Will be removed in HBase-3.0.
|
static ByteRange |
PrivateCellUtil.fillQualifierRange(Cell cell,
ByteRange range) |
static ByteRange |
CellUtil.fillRowRange(Cell cell,
ByteRange range)
Deprecated.
As of HBase-2.0. Will be removed in HBase-3.0.
|
static ByteRange |
PrivateCellUtil.fillRowRange(Cell cell,
ByteRange range)
ByteRange
|
static ByteRange |
CellUtil.fillTagRange(Cell cell,
ByteRange range)
Deprecated.
As of HBase-2.0. Will be removed in HBase-3.0.
|
static ByteRange |
PrivateCellUtil.fillTagRange(Cell cell,
ByteRange range) |
static ByteRange |
CellUtil.fillValueRange(Cell cell,
ByteRange range)
Deprecated.
As of HBase-2.0. Will be removed in HBase-3.0.
|
static ByteRange |
PrivateCellUtil.fillValueRange(Cell cell,
ByteRange range) |
Modifier and Type | Method and Description |
---|---|
static ByteRange |
CellUtil.fillFamilyRange(Cell cell,
ByteRange range)
Deprecated.
As of HBase-2.0. Will be removed in HBase-3.0.
|
static ByteRange |
PrivateCellUtil.fillFamilyRange(Cell cell,
ByteRange range) |
static ByteRange |
CellUtil.fillQualifierRange(Cell cell,
ByteRange range)
Deprecated.
As of HBase-2.0. Will be removed in HBase-3.0.
|
static ByteRange |
PrivateCellUtil.fillQualifierRange(Cell cell,
ByteRange range) |
static ByteRange |
CellUtil.fillRowRange(Cell cell,
ByteRange range)
Deprecated.
As of HBase-2.0. Will be removed in HBase-3.0.
|
static ByteRange |
PrivateCellUtil.fillRowRange(Cell cell,
ByteRange range)
ByteRange
|
static ByteRange |
CellUtil.fillTagRange(Cell cell,
ByteRange range)
Deprecated.
As of HBase-2.0. Will be removed in HBase-3.0.
|
static ByteRange |
PrivateCellUtil.fillTagRange(Cell cell,
ByteRange range) |
static ByteRange |
CellUtil.fillValueRange(Cell cell,
ByteRange range)
Deprecated.
As of HBase-2.0. Will be removed in HBase-3.0.
|
static ByteRange |
PrivateCellUtil.fillValueRange(Cell cell,
ByteRange range) |
Modifier and Type | Field and Description |
---|---|
private ByteRange |
AccessControlFilter.prevFam |
private ByteRange |
AccessControlFilter.prevQual |
Modifier and Type | Field and Description |
---|---|
private Map<ByteRange,Integer> |
AccessControlFilter.cfVsMaxVersions |
Constructor and Description |
---|
AccessControlFilter(AuthManager mgr,
User ugi,
TableName tableName,
AccessControlFilter.Strategy strategy,
Map<ByteRange,Integer> cfVsMaxVersions) |
Modifier and Type | Field and Description |
---|---|
private ByteRange |
VisibilityLabelFilter.curFamily |
private ByteRange |
VisibilityLabelFilter.curQualifier |
Modifier and Type | Field and Description |
---|---|
private Map<ByteRange,Integer> |
VisibilityLabelFilter.cfVsMaxVersions |
Constructor and Description |
---|
VisibilityLabelFilter(VisibilityExpEvaluator expEvaluator,
Map<ByteRange,Integer> cfVsMaxVersions) |
Modifier and Type | Interface and Description |
---|---|
interface |
PositionedByteRange
Extends
ByteRange with additional methods to support tracking a consumers position within
the viewport. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractByteRange
An abstract implementation of the ByteRange API
|
class |
AbstractPositionedByteRange
Extends the basic
SimpleByteRange implementation with position support. |
class |
SimpleByteRange
A read only version of the
ByteRange . |
class |
SimpleMutableByteRange
A basic mutable
ByteRange implementation. |
class |
SimplePositionedByteRange
Extends the basic
SimpleMutableByteRange implementation with position support and it is a
readonly version. |
class |
SimplePositionedMutableByteRange
Extends the basic
AbstractPositionedByteRange implementation with position support and it
is a mutable version. |
Modifier and Type | Method and Description |
---|---|
ByteRange |
SimpleMutableByteRange.deepCopy() |
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 |
AbstractByteRange.get(int index,
byte[] dst) |
ByteRange |
ByteRange.get(int index,
byte[] dst)
Fill
dst with bytes from the range, starting from index . |
ByteRange |
AbstractByteRange.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 |
SimpleMutableByteRange.put(int index,
byte val) |
ByteRange |
SimpleByteRange.put(int index,
byte val) |
ByteRange |
ByteRange.put(int index,
byte val)
Store
val at index . |
ByteRange |
SimpleMutableByteRange.put(int index,
byte[] val) |
ByteRange |
SimpleByteRange.put(int index,
byte[] val) |
ByteRange |
ByteRange.put(int index,
byte[] val)
Store
val at index . |
ByteRange |
SimpleMutableByteRange.put(int index,
byte[] val,
int offset,
int length) |
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 |
SimpleMutableByteRange.putInt(int index,
int val) |
ByteRange |
SimpleByteRange.putInt(int index,
int val) |
ByteRange |
ByteRange.putInt(int index,
int val)
Store the int value at
index |
ByteRange |
SimpleMutableByteRange.putLong(int index,
long val) |
ByteRange |
SimpleByteRange.putLong(int index,
long val) |
ByteRange |
ByteRange.putLong(int index,
long val)
Store the long value at
index |
ByteRange |
SimpleMutableByteRange.putShort(int index,
short val) |
ByteRange |
SimpleByteRange.putShort(int index,
short val) |
ByteRange |
ByteRange.putShort(int index,
short val)
Store the short value at
index |
ByteRange |
AbstractByteRange.set(byte[] bytes) |
ByteRange |
SimpleByteRange.set(byte[] bytes) |
ByteRange |
ByteRange.set(byte[] bytes)
Reuse this
ByteRange over a new byte[]. |
ByteRange |
AbstractByteRange.set(byte[] bytes,
int offset,
int length) |
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 |
AbstractByteRange.set(int capacity) |
ByteRange |
SimpleByteRange.set(int capacity) |
ByteRange |
ByteRange.set(int capacity)
Reuse this
ByteRange over a new byte[]. |
ByteRange |
AbstractByteRange.setLength(int length) |
ByteRange |
ByteRange.setLength(int length)
Update the length of this range.
|
ByteRange |
AbstractByteRange.setOffset(int offset) |
ByteRange |
ByteRange.setOffset(int offset)
Update the beginning of this range.
|
ByteRange |
SimpleMutableByteRange.shallowCopy() |
ByteRange |
SimpleByteRange.shallowCopy() |
ByteRange |
ByteRange.shallowCopy()
Create a new
ByteRange that points at this range's byte[]. |
ByteRange |
SimpleMutableByteRange.shallowCopySubRange(int innerOffset,
int copyLength) |
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 |
SimpleMutableByteRange.unset() |
ByteRange |
SimpleByteRange.unset() |
ByteRange |
ByteRange.unset()
Nullifies this ByteRange.
|
Modifier and Type | Method and Description |
---|---|
static ArrayList<ByteRange> |
ByteRangeUtils.fromArrays(Collection<byte[]> arrays) |
Modifier and Type | Method and Description |
---|---|
int |
AbstractByteRange.compareTo(ByteRange other)
Bitwise comparison of each byte in the array.
|
static boolean |
AbstractByteRange.isEmpty(ByteRange range)
Returns true when
range is of zero length, false otherwise. |
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) |
Modifier and Type | Method and Description |
---|---|
static ArrayList<byte[]> |
ByteRangeUtils.copyToNewArrays(Collection<ByteRange> ranges) |
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.