Interface EnumerationBuilder<T>

    • Method Summary

      Modifier and Type Method and Description
      List<T> buildEnumeration()
      Builds an enumeration of the nodes in the graph.
      List<T> getEnumeration()
      Get the enumeration previously build without any computation overhead.
    • Method Detail

      • buildEnumeration

        List<T> buildEnumeration()
        Builds an enumeration of the nodes in the graph. This method will build a list containing all nodes of the graph such that algorithms may work on the nodes of the graph sequentially.
        Returns:
        an enumeration of the nodes in the graph.
      • getEnumeration

        List<T> getEnumeration()
        Get the enumeration previously build without any computation overhead.
        Returns:
        the enumeration generated with a call to buildEnumeration() before.