public static interface GraphPathSearch.Result<V extends Vertex,E extends Edge<V>>
| Modifier and Type | Method and Description | 
|---|---|
Map<V,Weight> | 
costs()
Return a bindings of each vertex to its cost in the path. 
 | 
V | 
dst()
Returns the search destination, if was was given. 
 | 
Map<V,Set<E>> | 
parents()
Returns bindings of each vertex to its parent edges in the path. 
 | 
Set<Path<V,E>> | 
paths()
Returns the set of paths produced as a result of the graph search. 
 | 
V | 
src()
Returns the search source. 
 | 
V src()
V dst()
Set<Path<V,E>> paths()
Map<V,Set<E>> parents()