org.jgrapht.graph
Class DefaultWeightedEdge
java.lang.Object
org.jgrapht.graph.DefaultEdge
org.jgrapht.graph.DefaultWeightedEdge
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
public class DefaultWeightedEdge
- extends DefaultEdge
A default implementation for edges in a WeightedGraph
. All access to
the weight of an edge must go through the graph interface, which is why this
class doesn't expose any public methods.
- Author:
- John V. Sichi
- See Also:
- Serialized Form
Method Summary |
java.lang.Object |
clone()
|
protected double |
getWeight()
Retrieves the weight of this edge. |
Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
DefaultWeightedEdge
public DefaultWeightedEdge()
getWeight
protected double getWeight()
- Retrieves the weight of this edge. This is protected, for use by
subclasses only (e.g. for implementing toString).
- Returns:
- weight of this edge
clone
public java.lang.Object clone()
- Overrides:
clone
in class java.lang.Object
- See Also:
Object.clone()