Uses of Class
org.jgrapht.alg.shortestpath.AbstractPathElement
-
Packages that use AbstractPathElement Package Description org.jgrapht.alg.shortestpath Shortest-path related algorithms. -
-
Uses of AbstractPathElement in org.jgrapht.alg.shortestpath
Classes in org.jgrapht.alg.shortestpath with type parameters of type AbstractPathElement Modifier and Type Class Description (package private) classAbstractPathElementList<V,E,T extends AbstractPathElement<V,E>>List of pathsAbstractPathElementwith same target vertex.Subclasses of AbstractPathElement in org.jgrapht.alg.shortestpath Modifier and Type Class Description (package private) classBellmanFordPathElement<V,E>Helper class forBellmanFordShortestPath; not intended for general use.(package private) classRankingPathElement<V,E>Helper class forKShortestPaths.Fields in org.jgrapht.alg.shortestpath declared as AbstractPathElement Modifier and Type Field Description protected AbstractPathElement<V,E>AbstractPathElement. prevPathElementPrevious path element.Methods in org.jgrapht.alg.shortestpath that return AbstractPathElement Modifier and Type Method Description AbstractPathElement<V,E>AbstractPathElement. getPrevPathElement()Returns the previous path element.Methods in org.jgrapht.alg.shortestpath with parameters of type AbstractPathElement Modifier and Type Method Description booleanPathValidator. isValidPath(AbstractPathElement<V,E> prevPathElement, E edge)Checks if an edge can be added to a previous path element.Constructors in org.jgrapht.alg.shortestpath with parameters of type AbstractPathElement Constructor Description AbstractPathElement(AbstractPathElement<V,E> original)Copy constructor.AbstractPathElement(Graph<V,E> graph, AbstractPathElement<V,E> pathElement, E edge)Creates a path element by concatenation of an edge to a path element.
-