public static class Graph.Edge
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
int |
depth |
java.lang.String |
label |
int |
parent |
boolean |
reversed |
boolean |
side |
Graph.Vertex |
source |
Graph.Vertex |
target |
| Constructor and Description |
|---|
Edge(Graph.Vertex source,
Graph.Vertex target,
java.lang.String label,
int depth,
boolean reversed,
boolean side) |
Edge(Graph.Vertex source,
Graph.Vertex target,
java.lang.String label,
int parent,
int depth,
boolean reversed,
boolean side) |
public Graph.Vertex source
public Graph.Vertex target
public java.lang.String label
public int parent
public int depth
public boolean reversed
public boolean side
public Edge(Graph.Vertex source, Graph.Vertex target, java.lang.String label, int depth, boolean reversed, boolean side)
public Edge(Graph.Vertex source, Graph.Vertex target, java.lang.String label, int parent, int depth, boolean reversed, boolean side)