Class is used for storing graph. More...
Inheritance diagram for com.navigine.idl.java.Graph:Public Member Functions | |
| abstract ArrayList< GraphVertex > | getVertexes () |
| List of connected vertexes GraphVertex. | |
| abstract ArrayList< GraphEdge > | getEdges () |
| List of edges that connected vertexes GraphEdge. | |
| abstract boolean | isValid () |
Class is used for storing graph.
Referenced from Sublocation.
Definition at line 18 of file Graph.java.
|
abstract |
List of edges that connected vertexes GraphEdge.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.GraphBinding.
|
abstract |
List of connected vertexes GraphVertex.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.GraphBinding.
|
abstract |
Tells if this Graph is valid or not. Any other method (except for this one) called on an invalid Graph will throw java.lang.RuntimeException.
Reimplemented in com.navigine.idl.java.internal.GraphBinding.