Class AbstractGraphIterator.Specifics<VV,​EE>

    • Constructor Summary

      Constructors 
      Constructor Description
      Specifics()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract java.util.Set<? extends EE> edgesOf​(VV vertex)
      Returns the edges outgoing from the specified vertex in case of directed graph, and the edge touching the specified vertex in case of undirected graph.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Specifics

        Specifics()
    • Method Detail

      • edgesOf

        public abstract java.util.Set<? extends EE> edgesOf​(VV vertex)
        Returns the edges outgoing from the specified vertex in case of directed graph, and the edge touching the specified vertex in case of undirected graph.
        Parameters:
        vertex - the vertex whose outgoing edges are to be returned.
        Returns:
        the edges outgoing from the specified vertex in case of directed graph, and the edge touching the specified vertex in case of undirected graph.