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 List<Schema.Property>propertiesprivate final List<Schema.Relationship>relationshipsprivate final List<Schema.Metadata>metadata
-
Method Summary
Modifier and Type Method Description final StringgetName()the name of the node final List<Schema.Property>getProperties()the node properties final List<Schema.Relationship>getRelationships()the relationships to other nodes final List<Schema.Metadata>getMetadata()the node metadata StringtoString()-
-
Method Detail
-
getProperties
final List<Schema.Property> getProperties()
the node properties
-
getRelationships
final List<Schema.Relationship> getRelationships()
the relationships to other nodes
-
getMetadata
final List<Schema.Metadata> getMetadata()
the node metadata
-
-
-
-