public interface LongRowUpdate extends RowUpdate
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Reset all values to the default values.
|
long |
get(int columnId)
Get the value associated with a column ID.
|
void |
inc(int columnId,
long value)
Increment the value associated with a column ID.
|
LongColumnIterator |
iterator()
Obtain an iterator over the columns stored in this object.
|
void |
set(int columnId,
long value)
Set the value associated with a column ID.
|
long get(int columnId)
columnId - a column ID.void set(int columnId,
long value)
columnId - a column ID.value - the value to be set.void inc(int columnId,
long value)
columnId - a column ID.value - the value to increment by.void clear()
LongColumnIterator iterator()