Package org.apache.hadoop.hbase
Class PrivateCellUtil.FirstOnRowCell
java.lang.Object
org.apache.hadoop.hbase.PrivateCellUtil.EmptyCell
org.apache.hadoop.hbase.PrivateCellUtil.FirstOnRowCell
- All Implemented Interfaces:
Cell
,ExtendedCell
,HeapSize
,RawCell
- Direct Known Subclasses:
PrivateCellUtil.FirstOnRowColCell
- Enclosing class:
- PrivateCellUtil
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionprivate static final int
private final short
private final int
private final byte[]
Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
CELL_NOT_BASED_ON_CHUNK
Fields inherited from interface org.apache.hadoop.hbase.RawCell
MAX_TAGS_LENGTH
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]
Contiguous raw bytes that may start at any index in the containing array.short
Returns Number of row bytes.int
Returns Array index of first row bytelong
Return a long value representing time at which this cell was "Put" into the row.getType()
Typically, at server side, you'd better always use theExtendedCell.getTypeByte()
as this method does not expose theMaximum
andMinimum
because they will not be returned to client, but at server side, we do have cells with these types so if you use this method it will cause exceptions.byte
Returns The byte representation of the KeyValue.TYPE of this cell: one of Put, Delete, etclong
heapSize()
Return the approximate 'exclusive deep size' of implementing object.Methods inherited from class org.apache.hadoop.hbase.PrivateCellUtil.EmptyCell
getFamilyArray, getFamilyLength, getFamilyOffset, getQualifierArray, getQualifierLength, getQualifierOffset, getSequenceId, getTagsArray, getTagsLength, getTagsOffset, getValueArray, getValueLength, getValueOffset, setSequenceId, setTimestamp, setTimestamp
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.hadoop.hbase.ExtendedCell
deepClone, getChunkId, getSerializedSize, getSerializedSize, write, write
-
Field Details
-
FIXED_HEAPSIZE
-
rowArray
-
roffset
-
rlength
-
-
Constructor Details
-
FirstOnRowCell
-
-
Method Details
-
heapSize
Description copied from interface:HeapSize
Return the approximate 'exclusive deep size' of implementing object. Includes count of payload and hosting object sizings. -
getRowArray
Description copied from interface:Cell
Contiguous raw bytes that may start at any index in the containing array. Max length is Short.MAX_VALUE which is 32,767 bytes.- Specified by:
getRowArray
in interfaceCell
- Overrides:
getRowArray
in classPrivateCellUtil.EmptyCell
- Returns:
- The array containing the row bytes.
-
getRowOffset
Description copied from interface:Cell
Returns Array index of first row byte- Specified by:
getRowOffset
in interfaceCell
- Overrides:
getRowOffset
in classPrivateCellUtil.EmptyCell
-
getRowLength
Description copied from interface:Cell
Returns Number of row bytes. Must be < rowArray.length - offset.- Specified by:
getRowLength
in interfaceCell
- Overrides:
getRowLength
in classPrivateCellUtil.EmptyCell
-
getTimestamp
Description copied from interface:Cell
Return a long value representing time at which this cell was "Put" into the row. Typically represents the time of insertion, but can be any value from 0 to Long.MAX_VALUE. -
getTypeByte
Description copied from interface:ExtendedCell
Returns The byte representation of the KeyValue.TYPE of this cell: one of Put, Delete, etc -
getType
Description copied from interface:ExtendedCell
Typically, at server side, you'd better always use theExtendedCell.getTypeByte()
as this method does not expose theMaximum
andMinimum
because they will not be returned to client, but at server side, we do have cells with these types so if you use this method it will cause exceptions.- Returns:
- The data type this cell: one of Put, Delete, etc
-