|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ExportDataset
ExportDataset
Allows to get access to data export results
Instances of that class are received by
org.palo.api.Cube#getDataExport()
calls.
Here is an example code snippet for walking through data export results
... ExportDataset dataset= cube.getDataExport(); while(dataset.hasNextCell()) { Cell cell = dataset.getNextRow(); ... } ...
See also ExportContext
and Cell
.
Method Summary | |
---|---|
Cell |
getNextCell()
Gets the next cell from dataset |
boolean |
hasNextCell()
Checks whether there is at least one more cell. |
Method Detail |
---|
Cell getNextCell()
boolean hasNextCell()
true
if dataset contains at least one more cell,
false
otherwise
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |