Package | Description |
---|---|
com.yworks.yfiles.algorithms |
Modifier and Type | Method and Description |
---|---|
static GraphElementInsertion |
GraphElementInsertion.fromOrdinal(int ordinal) |
static GraphElementInsertion |
GraphElementInsertion.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphElementInsertion[] |
GraphElementInsertion.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
Graph.changeEdge(Edge e,
Edge e1,
Edge e2,
GraphElementInsertion d1,
GraphElementInsertion d2)
Redefines an edge's end points and fires corresponding notification events to inform registered listeners.
|
void |
Graph.changeEdge(Edge e,
Node newSource,
Edge sourceReference,
GraphElementInsertion sourceD,
Node newTarget,
Edge targetReference,
GraphElementInsertion targetD)
Redefines an edge's end points and fires corresponding notification events to inform registered listeners.
|
Edge |
Graph.createEdge(Node v,
Edge e1,
Node w,
Edge e2,
GraphElementInsertion d1,
GraphElementInsertion d2)
Creates a new edge in this graph to be ordered before or after a given edge and fires a corresponding notification event
to inform registered listeners.
|
Constructor and Description |
---|
Edge(Graph g,
Node v,
Edge e1,
Node w,
Edge e2,
GraphElementInsertion d1,
GraphElementInsertion d2)
Creates a new edge that belongs to the given graph.
|