|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Node in org.neo4j.api.core |
---|
Methods in org.neo4j.api.core that return Node | |
---|---|
Node |
EmbeddedNeo.createNode()
|
Node |
NeoService.createNode()
Creates a new node. |
Node |
TraversalPosition.currentNode()
Return the current node. |
Node |
Relationship.getEndNode()
Returns the end node of this relationship. |
Node |
EmbeddedNeo.getNodeById(long id)
|
Node |
NeoService.getNodeById(long id)
Looks up a node by id. |
Node[] |
Relationship.getNodes()
Returns the two nodes that are attached to this relationship. |
Node |
Relationship.getOtherNode(Node node)
A convenience operation that, given a node that is attached to this relationship, returns the other node. |
Node |
EmbeddedNeo.getReferenceNode()
|
Node |
NeoService.getReferenceNode()
Returns the reference node, which is a "starting point" in the node space. |
Node |
Relationship.getStartNode()
Returns the start node of this relationship. |
Node |
TraversalPosition.previousNode()
Returns the previous node, may be null. |
Methods in org.neo4j.api.core that return types with arguments of type Node | |
---|---|
Iterable<Node> |
EmbeddedNeo.getAllNodes()
|
Collection<Node> |
Traverser.getAllNodes()
Returns a collection of all nodes returned by this traverser. |
Iterable<Node> |
NeoService.getAllNodes()
Returns all nodes in the node space. |
Iterator<Node> |
Traverser.iterator()
Returns an iterator for this traverser. |
Methods in org.neo4j.api.core with parameters of type Node | |
---|---|
Relationship |
Node.createRelationshipTo(Node otherNode,
RelationshipType type)
Creates a relationship between this node and another node. |
Node |
Relationship.getOtherNode(Node node)
A convenience operation that, given a node that is attached to this relationship, returns the other node. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |