Uses of Interface
de.xima.fc.common.graphdot.IGraphDotEdgeSpecifier
-
Packages that use IGraphDotEdgeSpecifier Package Description de.xima.fc.common.graphdot Package with tools for working with the graph dot language. -
-
Uses of IGraphDotEdgeSpecifier in de.xima.fc.common.graphdot
Classes in de.xima.fc.common.graphdot that implement IGraphDotEdgeSpecifier Modifier and Type Class Description class
DirectedSubGraphExpression
A sub graph expression with directed edges.class
NodeId
Represents a graph dot node ID.class
UndirectedSubGraphExpression
A sub graph expression with undirected edges.Methods in de.xima.fc.common.graphdot that return IGraphDotEdgeSpecifier Modifier and Type Method Description IGraphDotEdgeSpecifier<? extends S>
IGraphDotEdgeStatement. getSource()
IGraphDotEdgeSpecifier<? extends S>
IGraphDotEdgeStatement. getTarget()
Methods in de.xima.fc.common.graphdot that return types with arguments of type IGraphDotEdgeSpecifier Modifier and Type Method Description List<IGraphDotEdgeSpecifier<? extends S>>
IGraphDotEdgeStatement. getMoreNodes()
Methods in de.xima.fc.common.graphdot with parameters of type IGraphDotEdgeSpecifier Modifier and Type Method Description static DirectedEdgeStatement
GraphDotElementFactory. directedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target)
Creates a new directed edge statement from the source to the target.static DirectedEdgeStatement
GraphDotElementFactory. directedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target, EdgeAttributeList attributes)
Creates a new directed edge statement from the source to the target, with optional attributes for the edge.static DirectedEdgeStatement
GraphDotElementFactory. directedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement>... moreNodes)
Creates a new directed edge statement from the source to the target.static DirectedEdgeStatement
GraphDotElementFactory. directedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target, Iterable<? extends IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributes)
Creates a new directed edge statement from the source to the target, with optional attributes for the edge.static UndirectedEdgeStatement
GraphDotElementFactory. undirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> target)
Creates a new undirected edge statement from the source to the target.static UndirectedEdgeStatement
GraphDotElementFactory. undirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> target, EdgeAttributeList attributes)
Creates a new undirected edge statement from the source to the target, with optional attributes for the edge.static UndirectedEdgeStatement
GraphDotElementFactory. undirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> target, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement>... moreNodes)
Creates a new undirected edge statement from the source to the target.static UndirectedEdgeStatement
GraphDotElementFactory. undirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> target, Iterable<? extends IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributes)
Creates a new undirected edge statement from the source to the target, with optional attributes for the edge.Method parameters in de.xima.fc.common.graphdot with type arguments of type IGraphDotEdgeSpecifier Modifier and Type Method Description static DirectedEdgeStatement
GraphDotElementFactory. directedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target, Iterable<? extends IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributes)
Creates a new directed edge statement from the source to the target, with optional attributes for the edge.static DirectedEdgeStatement
GraphDotElementFactory. directedEdgeStatement(Iterable<? extends IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement>> nodes)
Creates a new directed edge statement from the source to the target, with no attributes for the edge.static DirectedEdgeStatement
GraphDotElementFactory. directedEdgeStatement(Iterable<? extends IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement>> nodes, EdgeAttributeList attributes)
Creates a new directed edge statement from the source to the target, with optional attributes for the edge.static UndirectedEdgeStatement
GraphDotElementFactory. undirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> target, Iterable<? extends IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributes)
Creates a new undirected edge statement from the source to the target, with optional attributes for the edge.static UndirectedEdgeStatement
GraphDotElementFactory. undirectedEdgeStatement(Iterable<? extends IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement>> nodes)
Creates a new undirected edge statement from the source to the target, with no attributes for the edge.static UndirectedEdgeStatement
GraphDotElementFactory. undirectedEdgeStatement(Iterable<? extends IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement>> nodes, EdgeAttributeList attributes)
Creates a new undirected edge statement from the source to the target, with optional attributes for the edge.Constructors in de.xima.fc.common.graphdot with parameters of type IGraphDotEdgeSpecifier Constructor Description DirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target, List<? extends IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributes)
Creates a new directed edge statement/UndirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> target, List<? extends IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributeList)
Creates a new undirected edge statement/Constructor parameters in de.xima.fc.common.graphdot with type arguments of type IGraphDotEdgeSpecifier Constructor Description DirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target, List<? extends IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributes)
Creates a new directed edge statement/UndirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> target, List<? extends IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributeList)
Creates a new undirected edge statement/
-