Save This Page
Home » jcommon-1.0.13 » org.jfree » chart » renderer » [javadoc | source]
org.jfree.chart.renderer
public class: OutlierListCollection [javadoc | source]
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.
Constructor:
 public OutlierListCollection() 
Method from org.jfree.chart.renderer.OutlierListCollection Summary:
add,   isHighFarOut,   isLowFarOut,   iterator,   setHighFarOut,   setLowFarOut
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.jfree.chart.renderer.OutlierListCollection Detail:
 public 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. If it does overlap, it is appended to the outlier list which it overlaps and that list is updated.
 public boolean isHighFarOut() 
    A flag to indicate the presence of one or more far out values at the top end of the range.
 public boolean isLowFarOut() 
    A flag to indicate the presence of one or more far out values at the bottom end of the range.
 public Iterator iterator() 
    Returns an iterator for the outlier lists.
 public  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.
 public  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.