data class Node : Serializable
(source)
Data class for our node model.
See https://github.com/maxsumrall/PathDB/blob/master/src/main/java/com/pathdb/pathIndex/Node.java for the implementation in PathDB.
Node(label: String) Node(id: Long)
Data class for our node model. |
val id: Long
The identifier which maps to our label. |
|
val label: String
The label attached to this node. |
fun toString(): String |
fun clear(): Unit |
|
fun numberOfNodes(): Int |