Interface IGraphDotEdgeStatement<S extends IGraphDotStatement>
- Type Parameters:
S- Type of the allowed statements within sub graphs.
- All Superinterfaces:
IGraphDotElement, IGraphDotStatement, Serializable
- All Known Implementing Classes:
DirectedEdgeStatement, UndirectedEdgeStatement
Base type for directed and undirected edge statements.
- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptionList<IGraphDotEdgeSpecifier<? extends S>> IGraphDotEdgeSpecifier<? extends S> IGraphDotEdgeSpecifier<? extends S> Methods inherited from interface IGraphDotElement
toGraphDotString, write
-
Method Details
-
getAttributeList
EdgeAttributeList getAttributeList()- Returns:
- Optional attributes of the edge. Never
null, but may be empty.
-
getEdgeOperation
EEdgeType getEdgeOperation()- Returns:
- Whether this edge statement is for a directed or undirected edge. Never
null.
-
getMoreNodes
List<IGraphDotEdgeSpecifier<? extends S>> getMoreNodes()- Returns:
- Optional additional nodes to connect to. Never
null, but may be empty.
-
getSource
IGraphDotEdgeSpecifier<? extends S> getSource()- Returns:
- Source node of the edge, i.e. the start point of the edge. Never
null.
-
getTarget
IGraphDotEdgeSpecifier<? extends S> getTarget()- Returns:
- Target node of the edge, i.e. the end point of the edge. Never
null.
-