Uses of Interface
de.xima.fc.common.graphdot.IUndirectedGraphDotStatement
Packages that use IUndirectedGraphDotStatement
Package
Description
Package with tools for working with the graph dot language.
See
GraphDotElementFactory for creating graph dot elements.-
Uses of IUndirectedGraphDotStatement in de.xima.fc.common.graphdot
Subinterfaces of IUndirectedGraphDotStatement 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 IUndirectedGraphDotStatementModifier 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 graph dot element that represents a node statement.final classA undirected edge statement.final classA sub graph statement with undirected edges.Subclasses with type arguments of type IUndirectedGraphDotStatement in de.xima.fc.common.graphdotModifier and TypeClassDescriptionfinal classA undirected edge statement.final classAn undirected graph.final classA sub graph statement with undirected edges.final classA sub graph expression with undirected edges.Methods in de.xima.fc.common.graphdot with parameters of type IUndirectedGraphDotStatementModifier and TypeMethodDescriptionstatic UndirectedGraphGraphDotElementFactory.undirectedGraph(boolean strict, CharSequence id, IUndirectedGraphDotStatement... statements) Creates a new undirected graph.static UndirectedGraphGraphDotElementFactory.undirectedGraph(CharSequence id, IUndirectedGraphDotStatement... statements) Creates a new undirected, non-strict graph.static UndirectedGraphGraphDotElementFactory.undirectedGraphStrict(CharSequence id, IUndirectedGraphDotStatement... statements) Creates a new undirected, strict graph.static UndirectedSubGraphGraphDotElementFactory.undirectedSubGraph(CharSequence id, IUndirectedGraphDotStatement... statements) Creates a new undirected sub graph expression.static UndirectedSubGraphExpressionGraphDotElementFactory.undirectedSubGraphExpression(CharSequence id, IUndirectedGraphDotStatement... statements) Creates a new undirected sub graph.Method parameters in de.xima.fc.common.graphdot with type arguments of type IUndirectedGraphDotStatementModifier and TypeMethodDescriptionstatic UndirectedEdgeStatementGraphDotElementFactory.undirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> target) Creates a new undirected edge statement from the source to the target.static UndirectedEdgeStatementGraphDotElementFactory.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 UndirectedEdgeStatementGraphDotElementFactory.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 UndirectedEdgeStatementGraphDotElementFactory.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 UndirectedEdgeStatementGraphDotElementFactory.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 UndirectedEdgeStatementGraphDotElementFactory.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 UndirectedEdgeStatementGraphDotElementFactory.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.static UndirectedGraphGraphDotElementFactory.undirectedGraph(boolean strict, CharSequence id, Iterable<? extends IUndirectedGraphDotStatement> statements) Creates a new undirected graph.static UndirectedGraphGraphDotElementFactory.undirectedGraph(CharSequence id, Iterable<? extends IUndirectedGraphDotStatement> statements) Creates a new undirected, non-strict graph.static UndirectedGraphGraphDotElementFactory.undirectedGraphStrict(CharSequence id, Iterable<? extends IUndirectedGraphDotStatement> statements) Creates a new undirected, strict graph.static UndirectedSubGraphGraphDotElementFactory.undirectedSubGraph(CharSequence id, Iterable<? extends IUndirectedGraphDotStatement> statements) Creates a new undirected sub graph.static UndirectedSubGraphExpressionGraphDotElementFactory.undirectedSubGraphExpression(CharSequence id, Iterable<? extends IUndirectedGraphDotStatement> statements) Creates a new undirected sub graph expression.Constructor parameters in de.xima.fc.common.graphdot with type arguments of type IUndirectedGraphDotStatementModifierConstructorDescriptionUndirectedEdgeStatement(IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> source, IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement> target, List<? extends IGraphDotEdgeSpecifier<? extends IUndirectedGraphDotStatement>> moreNodes, EdgeAttributeList attributeList) Creates a new undirected 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/UndirectedGraph(boolean strict, CharSequence id, List<IUndirectedGraphDotStatement> statements) Creates a new undirected graph.UndirectedSubGraphExpression(CharSequence id, List<IUndirectedGraphDotStatement> statements) Creates a new sub graph with undirected edges.