org.palo.api
Interface ExportDataset


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.

Version:
$Id: ExportDataset.html,v 1.18 2009/07/09 11:01:46 ArndHouben Exp $

Method Summary
 Cell getNextCell()
          Gets the next cell from dataset
 boolean hasNextCell()
          Checks whether there is at least one more cell.
 

Method Detail

getNextCell

Cell getNextCell()
Gets the next cell from dataset

Returns:
next cell

hasNextCell

boolean hasNextCell()
Checks whether there is at least one more cell.

Returns:
true if dataset contains at least one more cell, false otherwise