Uses of Class
org.jgrapht.alg.AbstractPathElement
-
Packages that use AbstractPathElement Package Description org.jgrapht.alg Algorithms provided with JGraphT. -
-
Uses of AbstractPathElement in org.jgrapht.alg
Classes in org.jgrapht.alg with type parameters of type AbstractPathElement Modifier and Type Class Description (package private) class
AbstractPathElementList<V,E,T extends AbstractPathElement<V,E>>
Deprecated.moved in shortest path packageSubclasses of AbstractPathElement in org.jgrapht.alg Modifier and Type Class Description (package private) class
BellmanFordPathElement<V,E>
Deprecated.moved into shortest path package(package private) class
RankingPathElement<V,E>
Deprecated.UseRankingPathElement
instead.Fields in org.jgrapht.alg declared as AbstractPathElement Modifier and Type Field Description protected AbstractPathElement<V,E>
AbstractPathElement. prevPathElement
Deprecated.Previous path element.Methods in org.jgrapht.alg that return AbstractPathElement Modifier and Type Method Description AbstractPathElement<V,E>
AbstractPathElement. getPrevPathElement()
Deprecated.Returns the previous path element.Methods in org.jgrapht.alg with parameters of type AbstractPathElement Modifier and Type Method Description boolean
PathValidator. isValidPath(AbstractPathElement<V,E> prevPathElement, E edge)
Deprecated.Checks if an edge can be added to a previous path element.Constructors in org.jgrapht.alg with parameters of type AbstractPathElement Constructor Description AbstractPathElement(AbstractPathElement<V,E> original)
Deprecated.Copy constructor.AbstractPathElement(Graph<V,E> graph, AbstractPathElement<V,E> pathElement, E edge)
Deprecated.Creates a path element by concatenation of an edge to a path element.
-