Uses of Interface
nct.graph.Edge

Packages that use Edge
nct.graph   
nct.networkblast   
 

Uses of Edge in nct.graph
 

Classes in nct.graph 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 that return Edge
 Edge<NodeType,WeightType> BasicGraph.getEdge(NodeType nodeA, NodeType nodeB)
          Returns the specified 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.List<Edge<NodeType,WeightType>> BasicGraph.getEdgeList()
           
 java.util.List<Edge<NodeType,WeightType>> Graph.getEdgeList()
           
 java.util.Set<Edge<NodeType,WeightType>> BasicGraph.getEdges()
          Returns a list of all edges in the graph.
 java.util.Set<Edge<NodeType,WeightType>> Graph.getEdges()
          Returns all edges in the graph.
 

Methods in nct.graph 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.
 

Uses of Edge in nct.networkblast
 

Methods in nct.networkblast that return Edge
 Edge<NodeType,java.lang.Double> PathGraph.getEdge(NodeType nodeA, NodeType nodeB)
           
 

Methods in nct.networkblast that return types with arguments of type Edge
 java.util.List<Edge<NodeType,java.lang.Double>> PathGraph.getEdgeList()
           
 java.util.Set<Edge<NodeType,java.lang.Double>> PathGraph.getEdges()