public class RandomRowSequence extends java.lang.Object implements RowSequence
| Constructor and Description |
|---|
RandomRowSequence(StarTable startab)
Constructs a RowSequence from a StarTable which must offer random
access and know its number of rows.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Indicates that this sequence will not be required any more.
|
java.lang.Object |
getCell(int icol)
Returns the contents of a cell in the current row.
|
java.lang.Object[] |
getRow()
Returns the contents of the current table row, as an array
with the same number of elements as there are columns in this
table.
|
boolean |
next()
Attempts to advances the current row to the next one.
|
public RandomRowSequence(StarTable startab)
startab - the StarTable object providing the datajava.lang.IllegalArgumentException - if startab.isRandom()==false
or startab.getRowCount()<0public boolean next()
RowSequenceRowSequence.getCell(int) or RowSequence.getRow() methods.next in interface RowSequencepublic java.lang.Object[] getRow()
throws java.io.IOException
RowSequencegetRow in interface RowSequencejava.io.IOException - if there is an error reading the datapublic java.lang.Object getCell(int icol)
throws java.io.IOException
RowSequencegetCell in interface RowSequencejava.io.IOException - if there is an error reading the datapublic void close()
RowSequenceclose is undefined.close in interface RowSequence