Uses of Interface
nct.graph.Edge

Packages that use Edge
nct.graph   
nct.graph.basic   
 

Uses of Edge in nct.graph
 

Methods in nct.graph that return Edge
 Edge<NodeType,WeightType> Graph.getEdge(NodeType nodeA, NodeType nodeB)
          Returns a specific edge.
 

Methods in nct.graph that return types with arguments of type Edge
 java.util.Set<Edge<NodeType,WeightType>> Graph.getEdges()
          Returns all edges in the graph.
 

Uses of Edge in nct.graph.basic
 

Classes in nct.graph.basic that implement Edge
 class BasicEdge<NodeType extends Comparable<? super NodeType>,WeightType extends Comparable<? super WeightType>>
          A generic implementation of the Edge interface.
 

Methods in nct.graph.basic that return Edge
 Edge<NodeType,WeightType> BasicGraph.getEdge(NodeType nodeA, NodeType nodeB)
          Returns the specified edge.
 

Methods in nct.graph.basic that return types with arguments of type Edge
 java.util.Set<Edge<NodeType,WeightType>> BasicGraph.getEdges()
          Returns a list of all edges in the graph.
 

Methods in nct.graph.basic with parameters of type Edge
 int BasicEdge.compareTo(Edge<NodeType,WeightType> e)
          First compares whether the source and target nodes are the same and if so assumes the edge is the same.