|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use SPNode | |
|---|---|
| net.spy.util | General Spy Utilites |
| Uses of SPNode in net.spy.util |
|---|
| Classes in net.spy.util with type parameters of type SPNode | |
|---|---|
class |
AbstractSPNode<T extends SPNode<T>>
Abstract implementation of SPNode to make implementation a bit easier. |
class |
ShortestPath<N extends SPNode<N>>
Represents the shortest path between two SPNodes. |
interface |
SPNode<T extends SPNode<T>>
A Node for a shortest path graph. |
class |
SPVertex<N extends SPNode<N>>
A weighted connection to a SPNode. |
| Classes in net.spy.util that implement SPNode | |
|---|---|
class |
AbstractSPNode<T extends SPNode<T>>
Abstract implementation of SPNode to make implementation a bit easier. |
| Methods in net.spy.util that return types with arguments of type SPNode | |
|---|---|
Map<SPNode<T>,SPVertex<T>> |
SPNode.getNextHops()
Get the mapping of SPNode -> SPVertex hops for this SPNode. |
Map<SPNode<T>,SPVertex<T>> |
AbstractSPNode.getNextHops()
|
| Methods in net.spy.util with parameters of type SPNode | |
|---|---|
void |
SPNode.addNextHop(SPNode<T> n,
SPVertex<T> v)
Add a vertex to the next hop database to take you to a particular location. |
void |
AbstractSPNode.addNextHop(SPNode<T> n,
SPVertex<T> v)
|
void |
ShortestPathFinder.calculatePaths(SPNode<?> node)
Calculate all of the paths for a single node. |
SPVertex<T> |
SPNode.getNextHop(SPNode<T> n)
Get the next hop to take you to the given node. |
SPVertex<T> |
AbstractSPNode.getNextHop(SPNode<T> n)
|
| Method parameters in net.spy.util with type arguments of type SPNode | |
|---|---|
void |
ShortestPathFinder.calculatePaths(Collection<? extends SPNode<?>> nodes)
Calculate all the paths for all the nodes in the given collection. |
| Constructors in net.spy.util with parameters of type SPNode | |
|---|---|
NoPathException(SPNode<?> from,
SPNode<?> to)
Get an instance of NoPathException. |
|
NoPathException(SPNode<?> from,
SPNode<?> to)
Get an instance of NoPathException. |
|
NoPathException(SPNode<?> from,
SPNode<?> to,
String msg)
Get an instance of NoPathException with a message. |
|
NoPathException(SPNode<?> from,
SPNode<?> to,
String msg)
Get an instance of NoPathException with a message. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||