Java org.jfree.data.general DefaultHeatMapDataset fields, constructors, methods, implement or subclass

Example usage for Java org.jfree.data.general DefaultHeatMapDataset fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.jfree.data.general DefaultHeatMapDataset.

The text is from its open source code.

Constructor

Method

voidaddChangeListener(DatasetChangeListener listener)
Registers an object to receive notification of changes to the dataset.
Objectclone()
Returns an independent copy of this dataset.
booleanequals(Object obj)
Tests this dataset for equality with an arbitrary object.
ClassgetClass()
Returns the runtime class of this Object .
doublegetMaximumXValue()
Returns the highest x-value represented in this dataset.
doublegetMaximumYValue()
Returns the highest y-value represented in this dataset.
doublegetMinimumXValue()
Returns the lowest x-value represented in this dataset.
doublegetMinimumYValue()
Returns the lowest y-value represented in this dataset.
intgetXSampleCount()
Returns the number of x values across the width of the dataset.
intgetYSampleCount()
Returns the number of y values (or samples) for the dataset.
doublegetZValue(int xIndex, int yIndex)
Returns the z-value at the specified sample position in the dataset.
voidsetZValue(int xIndex, int yIndex, double z)
Updates a z-value in the dataset and sends a DatasetChangeEvent to all registered listeners.
voidsetZValue(int xIndex, int yIndex, double z, boolean notify)
Updates a z-value in the dataset and, if requested, sends a DatasetChangeEvent to all registered listeners.