Uses of Class
org.hermit.geometry.Edge

Packages that use Edge
org.hermit.geometry Some basic geometric utilities, geared towards graph analysis. 
 

Uses of Edge in org.hermit.geometry
 

Methods in org.hermit.geometry that return Edge
 Edge[] Graph.getEdgeArray()
          Get an array of the edges in the graph.
 

Methods in org.hermit.geometry that return types with arguments of type Edge
 java.util.Iterator<Edge> Graph.getEdges()
          Get the edges in the graph.
 

Methods in org.hermit.geometry with parameters of type Edge
 int Edge.compareTo(Edge ev)
          Compare an edge against another edge.
 

Constructor parameters in org.hermit.geometry with type arguments of type Edge
Graph(java.util.HashSet<Edge> e)
          Construct a graph with a given set of edges.