jas.hist
Interface ScatterPlotSource

All Superinterfaces:
DataSource
All Known Implementing Classes:
XML2DScatterDataSource, jas.hist.util.ScatterSourceAdapter, TestCustomOverlay, TestScatterPlotSource

public interface ScatterPlotSource
extends DataSource

Interface to be implemented by DataSources which can provide ScatterPlot data (but not 2D histogram data)

See Also:
Rebinnable2DHistogramData, HasScatterPlotData

Fields inherited from interface jas.hist.DataSource
DATE, DELTATIME, DOUBLE, INTEGER, STRING
 
Method Summary
 int getXAxisType()
          Currently we only support DATE and DOUBLE types
 double getXMax()
           
 double getXMin()
           
 int getYAxisType()
          Currently we only support DOUBLE
 double getYMax()
           
 double getYMin()
           
 ScatterEnumeration startEnumeration()
          Starts the enumeration of points from the beginning, and the enumeration will include all points stored in the partition.
 ScatterEnumeration startEnumeration(double xMin, double xMax, double yMin, double yMax)
          Starts the enumeration of points from the beginning, and the enumeration will include only points in the given range.
 
Methods inherited from interface jas.hist.DataSource
getTitle
 

Method Detail

getXMin

public double getXMin()

getXMax

public double getXMax()

getYMin

public double getYMin()

getYMax

public double getYMax()

getXAxisType

public int getXAxisType()
Currently we only support DATE and DOUBLE types

getYAxisType

public int getYAxisType()
Currently we only support DOUBLE

startEnumeration

public ScatterEnumeration startEnumeration(double xMin,
                                           double xMax,
                                           double yMin,
                                           double yMax)
Starts the enumeration of points from the beginning, and the enumeration will include only points in the given range.

startEnumeration

public ScatterEnumeration startEnumeration()
Starts the enumeration of points from the beginning, and the enumeration will include all points stored in the partition.