[Expand]
Inherited Methods |
From class
org.jfree.data.contour.DefaultContourDataset
static
Object[]
|
formObjectArray(double[] data)
Creates an object array from an array of doubles.
|
static
Object[][]
|
formObjectArray(double[][] data)
Creates an object array from an array of doubles.
|
int
|
getItemCount(int series)
Returns the number of items in the specified series.
|
double
|
getMaxZValue()
Returns the maximum z-value.
|
double
|
getMinZValue(double minX, double minY, double maxX, double maxY)
Returns the minimum z-value.
|
double
|
getMinZValue()
Returns the minimum z-value.
|
int
|
getSeriesCount()
Returns the number of series.
|
Comparable
|
getSeriesKey(int series)
Returns the name of the specified series.
|
Number
|
getX(int series, int item)
Returns the x value for the specified series and index (zero-based
indices).
|
int[]
|
getXIndices()
Returns the index of the xvalues.
|
Number
|
getXValue(int item)
Returns an x value.
|
Number[]
|
getXValues()
Returns the x values.
|
Number
|
getY(int series, int item)
Returns the y value for the specified series and index (zero-based
indices).
|
Number[]
|
getYValues()
Returns a Number array containing all y values.
|
Number
|
getZ(int series, int item)
Returns the z value for the specified series and index (zero-based
indices).
|
Range
|
getZValueRange(Range x, Range y)
Returns the maximum z-value within visible region of plot.
|
Number[]
|
getZValues()
Returns a Number array containing all z values.
|
int
|
indexX(int k)
Given index k, returns the column index containing k.
|
int[]
|
indexX()
Returns an int array contain the index into the x values.
|
int
|
indexY(int k)
Given index k, return the row index containing k.
|
int
|
indexZ(int i, int j)
Given column and row indices, returns the k index.
|
void
|
initialize(Object[] xData, Object[] yData, Object[] zData)
Initialises the dataset.
|
boolean
|
isDateAxis(int axisNumber)
Returns true if axis are dates.
|
void
|
setSeriesKeys(Comparable[] seriesKeys)
Sets the names of the series in the data source.
|
|
From class
org.jfree.data.xy.AbstractXYZDataset
double
|
getZValue(int series, int item)
Returns the z-value (as a double primitive) for an item within a series.
|
|
From class
org.jfree.data.xy.AbstractXYDataset
DomainOrder
|
getDomainOrder()
Returns the order of the domain (X) values.
|
double
|
getXValue(int series, int item)
Returns the x-value (as a double primitive) for an item within a series.
|
double
|
getYValue(int series, int item)
Returns the y-value (as a double primitive) for an item within a series.
|
|
From class
org.jfree.data.general.AbstractSeriesDataset
|
From class
org.jfree.data.general.AbstractDataset
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
From interface
java.io.ObjectInputValidation
|
From interface
org.jfree.data.contour.ContourDataset
abstract
double
|
getMaxZValue()
Returns the largest Z data value.
|
abstract
double
|
getMinZValue()
Returns the smallest Z data value.
|
abstract
int[]
|
getXIndices()
Returns the index of the xvalues.
|
abstract
Number[]
|
getXValues()
Returns the array of Numbers representing the x data values.
|
abstract
Number[]
|
getYValues()
Returns the array of Numbers representing the y data values.
|
abstract
Range
|
getZValueRange(Range x, Range y)
Returns the maximum z-value within visible region of plot.
|
abstract
Number[]
|
getZValues()
Returns the array of Numbers representing the z data values.
|
abstract
int[]
|
indexX()
Returns an int array contain the index into the x values.
|
abstract
boolean
|
isDateAxis(int axisNumber)
Returns true if axis are dates.
|
|
From interface
org.jfree.data.general.Dataset
|
From interface
org.jfree.data.general.SeriesChangeListener
|
From interface
org.jfree.data.general.SeriesDataset
abstract
int
|
getSeriesCount()
Returns the number of series in the dataset.
|
abstract
Comparable
|
getSeriesKey(int series)
Returns the key for a series.
|
abstract
int
|
indexOf(Comparable seriesKey)
Returns the index of the series with the specified key, or -1 if there
is no such series in the dataset.
|
|
From interface
org.jfree.data.xy.XYDataset
abstract
DomainOrder
|
getDomainOrder()
Returns the order of the domain (or X) values returned by the dataset.
|
abstract
int
|
getItemCount(int series)
Returns the number of items in a series.
|
abstract
Number
|
getX(int series, int item)
Returns the x-value for an item within a series.
|
abstract
double
|
getXValue(int series, int item)
Returns the x-value for an item within a series.
|
abstract
Number
|
getY(int series, int item)
Returns the y-value for an item within a series.
|
abstract
double
|
getYValue(int series, int item)
Returns the y-value (as a double primitive) for an item within a series.
|
|
From interface
org.jfree.data.xy.XYZDataset
abstract
Number
|
getZ(int series, int item)
Returns the z-value for the specified series and item.
|
abstract
double
|
getZValue(int series, int item)
Returns the z-value (as a double primitive) for an item within a series.
|
|