Interface ElementSet

All Superinterfaces:
Iterable<Element>
All Known Implementing Classes:
Element, SinkNode, SourceNode

public interface ElementSet extends Iterable<Element>
A set over a list of Element.
Author:
Kohsuke Kawaguchi
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final ElementSet
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addNext(Element element)
    For each element in this set, adds an edge to the given element.
    boolean
    Doesn't have to be strict (it's OK for this method to return false when it's actually true) since this is used just for optimization.

    Methods inherited from interface java.lang.Iterable

    forEach, iterator, spliterator
  • Field Details

  • Method Details

    • addNext

      void addNext(Element element)
      For each element in this set, adds an edge to the given element.
    • contains

      boolean contains(ElementSet rhs)
      Doesn't have to be strict (it's OK for this method to return false when it's actually true) since this is used just for optimization. (Erring on the other side is NG)