Class is used for storing graph vertex. More...
Inheritance diagram for com.navigine.idl.java.GraphVertex:Public Member Functions | |
| abstract int | getId () |
| graph vertex unique identifier. | |
| abstract Point | getPoint () |
| graph vertex position in meters Point. | |
| abstract String | getName () |
| graph vertex name. | |
| abstract boolean | getIsExternal () |
| graph vertex can be used to communicate with external graphs or not. | |
| abstract boolean | getIsElevation () |
| graph vertex used in elevation graph ElevationGraph or not. | |
| abstract boolean | isValid () |
Class is used for storing graph vertex.
Definition at line 14 of file GraphVertex.java.
|
abstract |
graph vertex unique identifier.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.GraphVertexBinding.
|
abstract |
graph vertex used in elevation graph ElevationGraph or not.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.GraphVertexBinding.
|
abstract |
graph vertex can be used to communicate with external graphs or not.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.GraphVertexBinding.
|
abstract |
graph vertex name.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.GraphVertexBinding.
|
abstract |
graph vertex position in meters Point.
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.GraphVertexBinding.
|
abstract |
Tells if this GraphVertex is valid or not. Any other method (except for this one) called on an invalid GraphVertex will throw java.lang.RuntimeException.
Reimplemented in com.navigine.idl.java.internal.GraphVertexBinding.