public class MyHistogramDataset
extends org.jfree.data.xy.AbstractIntervalXYDataset
implements org.jfree.data.xy.IntervalXYDataset, java.lang.Cloneable, org.jfree.util.PublicCloneable, java.io.Serializable
SimpleHistogramDataset,
Serialized Form| Constructor and Description |
|---|
MyHistogramDataset()
Creates a new (empty) dataset with a default type of
HistogramType.FREQUENCY. |
| Modifier and Type | Method and Description |
|---|---|
void |
addSeries(java.lang.Comparable key,
double[] values,
int bins)
Adds a series to the dataset, using the specified number of bins.
|
void |
addSeries(java.lang.Comparable key,
double[] values,
int bins,
double minimum,
double maximum)
Adds a series to the dataset.
|
java.lang.Object |
clone()
Returns a clone of the dataset.
|
boolean |
equals(java.lang.Object obj)
Tests this dataset for equality with an arbitrary object.
|
java.lang.Number |
getEndX(int series,
int item)
Returns the end value for a bin.
|
java.lang.Number |
getEndY(int series,
int item)
Returns the end y-value for a bin (which is the same as the y-value,
this method exists only to support the general form of the
IntervalXYDataset interface). |
int |
getItemCount(int series)
Returns the number of data items for a series.
|
int |
getSeriesCount()
Returns the number of series in the dataset.
|
java.lang.Comparable |
getSeriesKey(int series)
Returns the key for a series.
|
java.lang.Number |
getStartX(int series,
int item)
Returns the start value for a bin.
|
java.lang.Number |
getStartY(int series,
int item)
Returns the start y-value for a bin (which is the same as the y-value,
this method exists only to support the general form of the
IntervalXYDataset interface). |
org.jfree.data.statistics.HistogramType |
getType()
Returns the histogram type.
|
java.lang.Number |
getX(int series,
int item)
Returns the X value for a bin.
|
java.lang.Number |
getY(int series,
int item)
Returns the y-value for a bin (calculated to take into account the
histogram type).
|
void |
removeAllSeries()
Remove series
|
void |
setType(org.jfree.data.statistics.HistogramType type)
Sets the histogram type and sends a
DatasetChangeEvent to all
registered listeners. |
getEndXValue, getEndYValue, getStartXValue, getStartYValuegetDomainOrder, getXValue, getYValueaddChangeListener, fireDatasetChanged, getGroup, hasListener, notifyListeners, removeChangeListener, setGroup, validateObjectfinalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitpublic MyHistogramDataset()
HistogramType.FREQUENCY.public void removeAllSeries()
public org.jfree.data.statistics.HistogramType getType()
null).public void setType(org.jfree.data.statistics.HistogramType type)
DatasetChangeEvent to all
registered listeners.type - the type (null not permitted).public void addSeries(java.lang.Comparable key,
double[] values,
int bins)
key - the series key (null not permitted).values - the values (null not permitted).bins - the number of bins (must be at least 1).public void addSeries(java.lang.Comparable key,
double[] values,
int bins,
double minimum,
double maximum)
key - the series key (null not permitted).values - the raw observations.bins - the number of bins.minimum - the lower bound of the bin range.maximum - the upper bound of the bin range.public int getSeriesCount()
getSeriesCount in interface org.jfree.data.general.SeriesDatasetgetSeriesCount in class org.jfree.data.general.AbstractSeriesDatasetpublic java.lang.Comparable getSeriesKey(int series)
getSeriesKey in interface org.jfree.data.general.SeriesDatasetgetSeriesKey in class org.jfree.data.general.AbstractSeriesDatasetseries - the series index (zero based).public int getItemCount(int series)
getItemCount in interface org.jfree.data.xy.XYDatasetseries - the series index (zero based).public java.lang.Number getX(int series,
int item)
getX in interface org.jfree.data.xy.XYDatasetseries - the series index (zero based).item - the item index (zero based).public java.lang.Number getY(int series,
int item)
getY in interface org.jfree.data.xy.XYDatasetseries - the series index (zero based).item - the item index (zero based).public java.lang.Number getStartX(int series,
int item)
getStartX in interface org.jfree.data.xy.IntervalXYDatasetseries - the series index (zero based).item - the item index (zero based).public java.lang.Number getEndX(int series,
int item)
getEndX in interface org.jfree.data.xy.IntervalXYDatasetseries - the series index (zero based).item - the item index (zero based).public java.lang.Number getStartY(int series,
int item)
IntervalXYDataset interface).getStartY in interface org.jfree.data.xy.IntervalXYDatasetseries - the series index (zero based).item - the item index (zero based).public java.lang.Number getEndY(int series,
int item)
IntervalXYDataset interface).getEndY in interface org.jfree.data.xy.IntervalXYDatasetseries - the series index (zero based).item - the item index (zero based).public boolean equals(java.lang.Object obj)
equals in class java.lang.Objectobj - the object to test against (null permitted).public java.lang.Object clone()
throws java.lang.CloneNotSupportedException
clone in interface org.jfree.util.PublicCloneableclone in class org.jfree.data.general.AbstractDatasetjava.lang.CloneNotSupportedException - if the object cannot be cloned.