public interface IItemResultSet
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,ColumnInfo> |
getColumnMetadata()
Returns the column metadata for the result set.
|
IItemQuery |
getQuery()
Returns the query used to create the result set.
|
java.lang.Object |
getValue(int column)
Returns the value for the specified column, at the current row.
|
boolean |
next()
Advances the cursor to the next row in the result set.
|
IItemQuery getQuery()
java.lang.Object getValue(int column) throws ItemResultSetException
column
- the column for which to return the value.ItemResultSetException
- if there was a problem reading the value, such as the cursor not being at a
value, the column not existing etc.java.util.Map<java.lang.String,ColumnInfo> getColumnMetadata()
boolean next()