public class GraphEdge
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
int |
dest
The index of target node in Nodes vector
|
java.lang.String |
destLbl
Label of target node
|
int |
src
The index of source node in Nodes vector
|
java.lang.String |
srcLbl
Label of source node
|
int |
type
The type of Edge
|
Constructor and Description |
---|
GraphEdge(int s,
int d,
int t) |
GraphEdge(int s,
int d,
int t,
java.lang.String sLbl,
java.lang.String dLbl) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object e) |
java.lang.String |
toString() |
public int src
public int dest
public int type
public java.lang.String srcLbl
public java.lang.String destLbl