Uses of Interface
de.xima.fc.common.graphdot.IDirectedGraphDotStatement
Packages that use IDirectedGraphDotStatement
Package
Description
Package with tools for working with the graph dot language.
See
GraphDotElementFactory for creating graph dot elements.-
Uses of IDirectedGraphDotStatement in de.xima.fc.common.graphdot
Subinterfaces of IDirectedGraphDotStatement in de.xima.fc.common.graphdotModifier and TypeInterfaceDescriptioninterfaceA statement that can be used both in directed and undirected graphs.Classes in de.xima.fc.common.graphdot that implement IDirectedGraphDotStatementModifier and TypeClassDescriptionfinal classAn property statement assigning a value to a named property.final classAn attribute statement assigning default properties to a graph, node, or edge.final classA directed edge statement.final classA sub graph statement with directed edges.final classA graph dot element that represents a node statement.Subclasses with type arguments of type IDirectedGraphDotStatement in de.xima.fc.common.graphdotModifier and TypeClassDescriptionfinal classA directed edge statement.final classA directed graph.final classA sub graph statement with directed edges.final classA sub graph expression with directed edges.Methods in de.xima.fc.common.graphdot with parameters of type IDirectedGraphDotStatementModifier and TypeMethodDescriptionstatic DirectedGraphGraphDotElementFactory.directedGraph(boolean strict, CharSequence id, IDirectedGraphDotStatement... statements) Creates a new directed graph.static DirectedGraphGraphDotElementFactory.directedGraph(CharSequence id, IDirectedGraphDotStatement... statements) Creates a new directed, non-strict graph.static DirectedGraphGraphDotElementFactory.directedGraphStrict(CharSequence id, IDirectedGraphDotStatement... statements) Creates a new directed, strict graph.static DirectedSubGraphGraphDotElementFactory.directedSubGraph(CharSequence id, IDirectedGraphDotStatement... statements) Creates a new directed sub graph.static DirectedSubGraphExpressionGraphDotElementFactory.directedSubGraphExpression(CharSequence id, IDirectedGraphDotStatement... statements) Creates a new directed sub graph expression.Method parameters in de.xima.fc.common.graphdot with type arguments of type IDirectedGraphDotStatementModifier and TypeMethodDescriptionstatic DirectedEdgeStatementGraphDotElementFactory.directedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target) Creates a new directed edge statement from the source to the target.static DirectedEdgeStatementGraphDotElementFactory.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 DirectedEdgeStatementGraphDotElementFactory.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 DirectedEdgeStatementGraphDotElementFactory.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 DirectedEdgeStatementGraphDotElementFactory.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 DirectedEdgeStatementGraphDotElementFactory.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 DirectedEdgeStatementGraphDotElementFactory.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 DirectedGraphGraphDotElementFactory.directedGraph(boolean strict, CharSequence id, Iterable<? extends IDirectedGraphDotStatement> statements) Creates a new directed graph.static DirectedGraphGraphDotElementFactory.directedGraph(CharSequence id, Iterable<? extends IDirectedGraphDotStatement> statements) Creates a new directed, non-strict graph.static DirectedGraphGraphDotElementFactory.directedGraphStrict(CharSequence id, Iterable<? extends IDirectedGraphDotStatement> statements) Creates a new directed, strict graph.static DirectedSubGraphGraphDotElementFactory.directedSubGraph(CharSequence id, Iterable<? extends IDirectedGraphDotStatement> statements) Creates a new directed sub graph.static DirectedSubGraphExpressionGraphDotElementFactory.directedSubGraphExpression(CharSequence id, Iterable<? extends IDirectedGraphDotStatement> statements) Creates a new directed sub graph expression.Constructor parameters in de.xima.fc.common.graphdot with type arguments of type IDirectedGraphDotStatementModifierConstructorDescriptionDirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target, List<? extends IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributes) Creates a new directed edge statement/DirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement> target, List<? extends IGraphDotEdgeSpecifier<? extends IDirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributes) Creates a new directed edge statement/DirectedGraph(boolean strict, CharSequence id, List<IDirectedGraphDotStatement> statements) Creates a new directed graph.DirectedSubGraphExpression(CharSequence id, List<IDirectedGraphDotStatement> statements) Creates a new sub graph with directed edges.