Class Schema.Node
-
- All Implemented Interfaces:
@JvmRecord() public final class Schema.Node extends Record
A Node in the graph.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Set<Schema.Property>propertiesprivate final Set<Schema.Relationship>relationshipsprivate final Set<Schema.Metadata>metadata
-
Method Summary
Modifier and Type Method Description final StringgetName()the name of the node final Set<Schema.Property>getProperties()the node properties final Set<Schema.Relationship>getRelationships()the relationships to other nodes final Set<Schema.Metadata>getMetadata()the node metadata StringtoString()-
-
Method Detail
-
getProperties
final Set<Schema.Property> getProperties()
the node properties
-
getRelationships
final Set<Schema.Relationship> getRelationships()
the relationships to other nodes
-
getMetadata
final Set<Schema.Metadata> getMetadata()
the node metadata
-
-
-
-