Package org.jfree.data.statistics
Class HistogramBin
java.lang.Object
org.jfree.data.statistics.HistogramBin
- All Implemented Interfaces:
Serializable,Cloneable
public class HistogramBin extends Object implements Cloneable, Serializable
A bin for the
HistogramDataset class.- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description HistogramBin(double startBoundary, double endBoundary)Creates a new bin. -
Method Summary
Modifier and Type Method Description Objectclone()Returns a clone of the bin.booleanequals(Object obj)Tests this object for equality with an arbitrary object.doublegetBinWidth()Returns the bin width.intgetCount()Returns the number of items in the bin.doublegetEndBoundary()Returns the end boundary.doublegetStartBoundary()Returns the start boundary.voidincrementCount()Increments the item count.
-
Constructor Details
-
HistogramBin
Creates a new bin.- Parameters:
startBoundary- the start boundary.endBoundary- the end boundary.
-
-
Method Details
-
getCount
Returns the number of items in the bin.- Returns:
- The item count.
-
incrementCount
Increments the item count. -
getStartBoundary
Returns the start boundary.- Returns:
- The start boundary.
-
getEndBoundary
Returns the end boundary.- Returns:
- The end boundary.
-
getBinWidth
Returns the bin width.- Returns:
- The bin width.
-
equals
Tests this object for equality with an arbitrary object. -
clone
Returns a clone of the bin.- Overrides:
clonein classObject- Returns:
- A clone.
- Throws:
CloneNotSupportedException- not thrown by this class.
-