Interface IStrategy<V>

  • Type Parameters:
    V -

    public interface IStrategy<V>
    The strategy determines the order in which nodes in the structure are traversed.

    For each node, the strategy returns a non-null but possibly empty iterator over the successors.

    • Method Detail

      • getIterator

        @NonNull java.util.Iterator<V> getIterator​(V v)