Class LegendItemCollection

java.lang.Object
org.jfree.chart.LegendItemCollection

public class LegendItemCollection
extends Object
A collection of legend items.
  • Constructor Details

    • LegendItemCollection

      public LegendItemCollection()
      Constructs a new legend item collection, initially empty.
  • Method Details

    • add

      public void add​(LegendItem item)
      Adds a legend item to the collection.
      Parameters:
      item - the item to add.
    • addAll

      public void addAll​(LegendItemCollection collection)
      Adds the legend items from another collection to this collection.
      Parameters:
      collection - the other collection.
    • get

      public LegendItem get​(int index)
      Returns a legend item from the collection.
      Parameters:
      index - the legend item index (zero-based).
      Returns:
      the legend item.
    • getItemCount

      public int getItemCount()
      Returns the number of legend items in the collection.
      Returns:
      the item count.
    • iterator

      public Iterator iterator()
      Returns an iterator that provides access to all the legend items.
      Returns:
      an iterator.