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