@InterfaceAudience.Public @InterfaceStability.Stable public class Put extends Mutation implements HeapSize, Comparable<Row>
durability, familyMap, MUTATION_OVERHEAD, row, ts
ID_ATRIBUTE
Constructor and Description |
---|
Put(byte[] row)
Create a Put operation for the specified row.
|
Put(byte[] rowArray,
int rowOffset,
int rowLength)
We make a copy of the passed in row key to keep local.
|
Put(byte[] rowArray,
int rowOffset,
int rowLength,
long ts)
We make a copy of the passed in row key to keep local.
|
Put(byte[] row,
long ts)
Create a Put operation for the specified row, using a given timestamp.
|
Put(ByteBuffer row) |
Put(ByteBuffer row,
long ts) |
Put(Put putToCopy)
Copy constructor.
|
Modifier and Type | Method and Description |
---|---|
Put |
add(byte[] family,
byte[] qualifier,
byte[] value)
Add the specified column and value to this Put operation.
|
Put |
add(byte[] family,
byte[] qualifier,
long ts,
byte[] value)
Add the specified column and value, with the specified timestamp as
its version to this Put operation.
|
Put |
add(byte[] family,
ByteBuffer qualifier,
long ts,
ByteBuffer value)
Add the specified column and value, with the specified timestamp as
its version to this Put operation.
|
Put |
add(Cell kv)
Add the specified KeyValue to this Put operation.
|
Put |
addImmutable(byte[] family,
byte[] qualifier,
byte[] value)
|
Put |
addImmutable(byte[] family,
byte[] qualifier,
long ts,
byte[] value)
|
Put |
addImmutable(byte[] family,
ByteBuffer qualifier,
long ts,
ByteBuffer value)
|
List<Cell> |
get(byte[] family,
byte[] qualifier)
Returns a list of all KeyValue objects with matching column family and qualifier.
|
boolean |
has(byte[] family,
byte[] qualifier)
A convenience method to determine if this object's familyMap contains
a value assigned to the given family & qualifier.
|
boolean |
has(byte[] family,
byte[] qualifier,
byte[] value)
A convenience method to determine if this object's familyMap contains
a value assigned to the given family, qualifier and timestamp.
|
boolean |
has(byte[] family,
byte[] qualifier,
long ts)
A convenience method to determine if this object's familyMap contains
a value assigned to the given family, qualifier and timestamp.
|
boolean |
has(byte[] family,
byte[] qualifier,
long ts,
byte[] value)
A convenience method to determine if this object's familyMap contains
the given value assigned to the given family, qualifier and timestamp.
|
cellScanner, compareTo, extraHeapSize, getClusterIds, getDurability, getFamilyCellMap, getFamilyMap, getFingerprint, getRow, getTimeStamp, getWriteToWAL, heapSize, isEmpty, numFamilies, setClusterIds, setDurability, setFamilyCellMap, setFamilyMap, setWriteToWAL, size, toMap
getAttribute, getAttributeSize, getAttributesMap, getId, setAttribute, setId
toJSON, toJSON, toMap, toString, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
compareTo
public Put(byte[] row)
row
- row keypublic Put(byte[] row, long ts)
row
- row key; we make a copy of what we are passed to keep local.ts
- timestamppublic Put(byte[] rowArray, int rowOffset, int rowLength)
rowArray
- rowOffset
- rowLength
- public Put(ByteBuffer row, long ts)
row
- row key; we make a copy of what we are passed to keep local.ts
- timestamppublic Put(ByteBuffer row)
row
- row key; we make a copy of what we are passed to keep local.public Put(byte[] rowArray, int rowOffset, int rowLength, long ts)
rowArray
- rowOffset
- rowLength
- ts
- public Put(Put putToCopy)
putToCopy
- put to copypublic Put add(byte[] family, byte[] qualifier, byte[] value)
family
- family namequalifier
- column qualifiervalue
- column valuepublic Put addImmutable(byte[] family, byte[] qualifier, byte[] value)
add(byte[], byte[], byte[])
. This version expects
that the underlying arrays won't change. It's intended
for usage internal HBase to and for advanced client applications.public Put add(byte[] family, byte[] qualifier, long ts, byte[] value)
family
- family namequalifier
- column qualifierts
- version timestampvalue
- column valuepublic Put addImmutable(byte[] family, byte[] qualifier, long ts, byte[] value)
add(byte[], byte[], long, byte[])
. This version expects
that the underlying arrays won't change. It's intended
for usage internal HBase to and for advanced client applications.public Put add(byte[] family, ByteBuffer qualifier, long ts, ByteBuffer value)
family
- family namequalifier
- column qualifierts
- version timestampvalue
- column valuepublic Put addImmutable(byte[] family, ByteBuffer qualifier, long ts, ByteBuffer value)
add(byte[], ByteBuffer, long, ByteBuffer)
. This version expects
that the underlying arrays won't change. It's intended
for usage internal HBase to and for advanced client applications.public Put add(Cell kv) throws IOException
kv
- individual KeyValueIOException
- epublic boolean has(byte[] family, byte[] qualifier)
family
- column familyqualifier
- column qualifierpublic boolean has(byte[] family, byte[] qualifier, long ts)
family
- column familyqualifier
- column qualifierts
- timestamppublic boolean has(byte[] family, byte[] qualifier, byte[] value)
family
- column familyqualifier
- column qualifiervalue
- value to checkpublic boolean has(byte[] family, byte[] qualifier, long ts, byte[] value)
family
- column familyqualifier
- column qualifierts
- timestampvalue
- value to checkpublic List<Cell> get(byte[] family, byte[] qualifier)
family
- column familyqualifier
- column qualifierCopyright © 2013 The Apache Software Foundation. All Rights Reserved.