public interface Row
Modifier and Type | Field and Description |
---|---|
static com.google.common.base.Function<Row,java.lang.Object[]> |
MATERIALIZE |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
get(int index)
Returns the element at the specified column
|
java.lang.Object[] |
materialize()
Returns a materialized view of this row.
|
int |
size() |
static final com.google.common.base.Function<Row,java.lang.Object[]> MATERIALIZE
int size()
java.lang.Object get(int index)
index
- index of the column to returnjava.lang.IndexOutOfBoundsException
- if the index is out of range
(index < 0 || index >= size())java.lang.Object[] materialize()