Interface DirectedGraphElement
-
- All Superinterfaces:
AttributeMapOwner
,java.lang.Cloneable
- All Known Subinterfaces:
BoundaryDirectedGraphNode
,ContainingDirectedGraphNode
,DirectedGraph<N,E>
,DirectedGraphEdge<S,T>
,DirectedGraphNode
- All Known Implementing Classes:
AbstractDirectedGraph
,AbstractDirectedGraphEdge
,AbstractDirectedGraphNode
public interface DirectedGraphElement extends AttributeMapOwner, java.lang.Cloneable
Main interface for elements of a directed graph. Elements are nodes and edges. All implementing classes of this interface should implement an equals method based on some globally unique ID.- Author:
- bfvdonge
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
DirectedGraph<?,?>
getGraph()
java.lang.String
getLabel()
int
hashCode()
-
Methods inherited from interface org.processmining.models.graphbased.AttributeMapOwner
getAttributeMap
-
-
-
-
Method Detail
-
getLabel
java.lang.String getLabel()
-
getGraph
DirectedGraph<?,?> getGraph()
-
equals
boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-