Interface Node<T extends Node>


public interface Node<T extends Node>
Node in a graph.
  • Method Summary

    Modifier and Type
    Method
    Description
    Get all the children of this node.
  • Method Details

    • getChildren

      Set<T> getChildren()
      Get all the children of this node.
      Returns:
      The set of all children of this node.