Package org.jgrapht.alg
Class BlockCutpointGraph.BCGEdge
- java.lang.Object
-
- org.jgrapht.graph.IntrusiveEdge
-
- org.jgrapht.graph.DefaultEdge
-
- org.jgrapht.alg.BlockCutpointGraph.BCGEdge
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
- Enclosing class:
- BlockCutpointGraph<V,E>
private class BlockCutpointGraph.BCGEdge extends DefaultEdge
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
private V
source
private V
target
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description V
getSource()
Retrieves the source of this edge.V
getTarget()
Retrieves the target of this edge.-
Methods inherited from class org.jgrapht.graph.DefaultEdge
toString
-
Methods inherited from class org.jgrapht.graph.IntrusiveEdge
clone
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
source
private V source
-
target
private V target
-
-
Method Detail
-
getSource
public V getSource()
Description copied from class:DefaultEdge
Retrieves the source of this edge. This is protected, for use by subclasses only (e.g. for implementing toString).- Overrides:
getSource
in classDefaultEdge
- Returns:
- source of this edge
-
getTarget
public V getTarget()
Description copied from class:DefaultEdge
Retrieves the target of this edge. This is protected, for use by subclasses only (e.g. for implementing toString).- Overrides:
getTarget
in classDefaultEdge
- Returns:
- target of this edge
-
-