java.lang.Object | |
↳ | org.jfree.chart.renderer.OutlierListCollection |
A collection of outlier lists for a box and whisker plot. Each collection is associated with a single box and whisker entity. Outliers are grouped in lists for each entity. Lists contain one or more outliers, determined by whether overlaps have occurred. Overlapping outliers are grouped in the same list.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new empty collection.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
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. | |||||||||||
A flag to indicate the presence of one or more far out values at the
top end of the range.
| |||||||||||
A flag to indicate the presence of one or more far out values at the
bottom end of the range.
| |||||||||||
Returns an iterator for the outlier lists.
| |||||||||||
Sets the flag that indicates the presence of one or more far out values
at the top end of the range.
| |||||||||||
Sets the flag that indicates the presence of one or more far out values
at the bottom end of the range.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Creates a new empty collection.
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.
If it does overlap, it is appended to the outlier list which it overlaps
and that list is updated.
outlier | element to be appended to this list. |
---|
A flag to indicate the presence of one or more far out values at the top end of the range.
boolean
.
A flag to indicate the presence of one or more far out values at the bottom end of the range.
boolean
.
Sets the flag that indicates the presence of one or more far out values at the top end of the range.
farOut | the flag. |
---|
Sets the flag that indicates the presence of one or more far out values at the bottom end of the range.
farOut | the flag. |
---|