Uses of Interface
net.spy.util.SPNode

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
 java.util.Map<SPNode<T>,SPVertex<T>> SPNode.getNextHops()
          Get the mapping of SPNode -> SPVertex hops for this SPNode.
 java.util.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(java.util.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, java.lang.String msg)
          Get an instance of NoPathException with a message.
NoPathException(SPNode<?> from, SPNode<?> to, java.lang.String msg)
          Get an instance of NoPathException with a message.
 



Copyright © 1995-2007 SPY Internetworking. All Rights Reserved.