Package de.xima.fc.common.graphdot
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
public interface IGraphDotEdgeStatement<S extends IGraphDotStatement> extends IGraphDotStatement
Base type for directed and undirected edge statements.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EdgeAttributeList
getAttributeList()
EEdgeType
getEdgeOperation()
List<IGraphDotEdgeSpecifier<? extends S>>
getMoreNodes()
IGraphDotEdgeSpecifier<? extends S>
getSource()
IGraphDotEdgeSpecifier<? extends S>
getTarget()
-
Methods inherited from interface de.xima.fc.common.graphdot.IGraphDotElement
toGraphDotString, write
-
-
-
-
Method Detail
-
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
.
-
-