public interface Tuple
| Modifier and Type | Method and Description |
|---|---|
int |
count() |
<V> V |
get(Expression<V> key)
Retrieve a value by a
Expression instance. |
<V> V |
get(int index)
Retrieve a value by a numeric index.
|
<V> V |
get(String key)
Retrieve a value by a column or alias name.
|
<V> V get(Expression<V> key)
Expression instance.V - type of result.key - expression instance, this should be the same expression used in the query used to
derive this result.<V> V get(String key)
V - type of result.key - the alias or column name used in the query<V> V get(int index)
V - type of result.index - 0 based index of the result set.int count()