public class Edge extends Object implements Comparable<Edge>
private Node
end
start
private double
weight
Edge(Node start, Node end, double weight)
int
compareTo(Edge o)
Node
getEnd()
getStart()
double
getWeight()
String
toString()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
private Node start
private Node end
private double weight
public Edge(Node start, Node end, double weight)
public Node getEnd()
public Node getStart()
public double getWeight()
public String toString()
toString
Object
public int compareTo(Edge o)
compareTo
Comparable<Edge>