org.jfree.chart.renderer
public class OutlierListCollection extends Object
See Also: OutlierList
Constructor Summary | |
---|---|
OutlierListCollection()
Creates a new empty collection. |
Method Summary | |
---|---|
boolean | add(Outlier outlier)
Appends the specified element as a new OutlierList to the
end of this list if it does not overlap an outlier in an existing list.
|
boolean | isHighFarOut()
A flag to indicate the presence of one or more far out values at the
top end of the range.
|
boolean | isLowFarOut()
A flag to indicate the presence of one or more far out values at the
bottom end of the range.
|
Iterator | iterator()
Returns an iterator for the outlier lists.
|
void | setHighFarOut(boolean farOut)
Sets the flag that indicates the presence of one or more far out values
at the top end of the range.
|
void | setLowFarOut(boolean farOut)
Sets the flag that indicates the presence of one or more far out values
at the bottom end of the range.
|
OutlierList
to the
end of this list if it does not overlap an outlier in an existing list.
If it does overlap, it is appended to the outlier list which it overlaps
and that list is updated.
Parameters: outlier element to be appended to this list.
Returns: true (as per the general contract of Collection.add).
Returns: A boolean
.
Returns: A boolean
.
Returns: An iterator.
Parameters: farOut the flag.
Parameters: farOut the flag.