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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NonNull java.util.Iterator<V>getIterator(V v)
-