Modifier and Type | Method and Description |
---|---|
Edge |
Edge.Builder.buildEdge()
Creates a new
Edge , setting the values specified via this
Edge.Builder . |
protected Edge |
GraphCopier.copyEdge(Edge edge)
Creates a copy of the given edge.
|
Modifier and Type | Method and Description |
---|---|
javafx.beans.property.ReadOnlyListProperty<Edge> |
Graph.edgesProperty()
|
java.util.Set<Edge> |
Node.getAllIncomingEdges()
|
java.util.Set<Edge> |
Node.getAllOutgoingEdges()
|
javafx.collections.ObservableList<Edge> |
Graph.getEdges()
Returns the edgesProperty of this
Graph . |
java.util.Set<Edge> |
Node.getIncomingEdges()
|
java.util.Map<Edge,Edge> |
GraphCopier.getInputToOutputEdgeMap()
|
java.util.Map<Edge,Edge> |
GraphCopier.getInputToOutputEdgeMap()
|
java.util.Set<Edge> |
Node.getOutgoingEdges()
|
Modifier and Type | Method and Description |
---|---|
protected Edge |
GraphCopier.copyEdge(Edge edge)
Creates a copy of the given edge.
|
Graph.Builder |
Graph.Builder.edges(Edge... edges)
|
protected void |
GraphCopier.trackCopiedEdge(Edge inputEdge,
Edge outputEdge)
Maintains a mapping from the input edge to the output edge.
|
Modifier and Type | Method and Description |
---|---|
<T> Edge.Builder |
Edge.Builder.attr(java.util.function.BiConsumer<Edge,T> setter,
T value)
Uses the given setter to set the attribute value.
|
Graph.Builder |
Graph.Builder.edges(java.util.Collection<Edge> edges)
|
Constructor and Description |
---|
Graph(java.util.Collection<? extends Node> nodes,
java.util.Collection<? extends Edge> edges)
Constructs a new
Graph from the given nodes, and edges but empty
attributes. |
Graph(java.util.Map<java.lang.String,java.lang.Object> attributes,
java.util.Collection<? extends Node> nodes,
java.util.Collection<? extends Edge> edges)
Constructs a new
Graph from the given attributes, nodes, and
edgesProperty. |
Copyright (c) 2014 itemis AG and others. All rights reserved.