|
DODS 7.1 API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.lutris.dods.builder.generator.query.RDBRow
public class RDBRow
An instance of RDBRow is returned by the QueryBuilder.getNextRow() method. An RDBRow contains RDBColumnValue objects corresponding to the RDBColumn objects used to construct the instance of QueryBuilder. in a particular table in the database.
QueryBuilder
Constructor Summary | |
---|---|
RDBRow(RDBColumnValue[] vals)
Constructor used only by QueryBuilder, never the application developer. |
Method Summary | |
---|---|
RDBColumnValue |
get(int i)
Returns an RDBColumnValue object for a column in the current row. |
RDBColumnValue |
get(RDBColumn col)
Returns an RDBColumnValue object for a column in the current row. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public RDBRow(RDBColumnValue[] vals)
vals
- the column values in the current rowauthor Jay Gunter
Method Detail |
---|
public RDBColumnValue get(int i) throws InvalidRowColumnException
i
- the index into the row of the column value desired.
InvalidRowColumnException
- If i is not a valid column number.author Jay Gunter
public RDBColumnValue get(RDBColumn col) throws InvalidRowColumnException
col
- the column value desired.
InvalidRowColumnException
- If col is not a valid column in the row.author Jay Gunter
|
DODS 7.1 API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |