| java.lang.Object org.jfree.data.statistics.BoxAndWhiskerItem
BoxAndWhiskerItem | public class BoxAndWhiskerItem implements Serializable(Code) | | Represents one data item within a box-and-whisker dataset. Instances of
this class are immutable.
|
BoxAndWhiskerItem | public BoxAndWhiskerItem(Number mean, Number median, Number q1, Number q3, Number minRegularValue, Number maxRegularValue, Number minOutlier, Number maxOutlier, List outliers)(Code) | | Creates a new box-and-whisker item.
Parameters: mean - the mean (null permitted). Parameters: median - the median (null permitted). Parameters: q1 - the first quartile (null permitted). Parameters: q3 - the third quartile (null permitted). Parameters: minRegularValue - the minimum regular value (null permitted). Parameters: maxRegularValue - the maximum regular value (null permitted). Parameters: minOutlier - the minimum outlier (null permitted). Parameters: maxOutlier - the maximum outlier (null permitted). Parameters: outliers - the outliers (null permitted). |
equals | public boolean equals(Object obj)(Code) | | Tests this object for equality with an arbitrary object.
Parameters: obj - the object to test against (null permitted). A boolean. |
getMaxOutlier | public Number getMaxOutlier()(Code) | | Returns the maximum outlier.
The maximum outlier (possibly null ). |
getMaxRegularValue | public Number getMaxRegularValue()(Code) | | Returns the maximum regular value.
The maximum regular value (possibly null ). |
getMean | public Number getMean()(Code) | | Returns the mean.
The mean (possibly null ). |
getMedian | public Number getMedian()(Code) | | Returns the median.
The median (possibly null ). |
getMinOutlier | public Number getMinOutlier()(Code) | | Returns the minimum outlier.
The minimum outlier (possibly null ). |
getMinRegularValue | public Number getMinRegularValue()(Code) | | Returns the minimum regular value.
The minimum regular value (possibly null ). |
getOutliers | public List getOutliers()(Code) | | Returns a list of outliers.
A list of outliers (possibly null ). |
getQ1 | public Number getQ1()(Code) | | Returns the first quartile.
The first quartile (possibly null ). |
getQ3 | public Number getQ3()(Code) | | Returns the third quartile.
The third quartile (possibly null ). |
toString | public String toString()(Code) | | Returns a string representation of this instance, primarily for
debugging purposes.
A string representation of this instance. |
|
|