Uses of Interface
org.neo4j.graphdb.Relationship

Packages that use Relationship
org.neo4j.graphdb The graph database API used by Neo4j. 
org.neo4j.kernel Implementation for embedding a Neo4j graph database in an application. 
 

Uses of Relationship in org.neo4j.graphdb
 

Methods in org.neo4j.graphdb that return Relationship
 Relationship Node.createRelationshipTo(Node otherNode, RelationshipType type)
          Creates a relationship between this node and another node.
 Relationship GraphDatabaseService.getRelationshipById(long id)
          Looks up a relationship by id.
 Relationship Node.getSingleRelationship(RelationshipType type, Direction dir)
          Returns the only relationship of a given type and direction that is attached to this node, or null.
 Relationship TraversalPosition.lastRelationshipTraversed()
          Return the last relationship traversed.
 

Methods in org.neo4j.graphdb that return types with arguments of type Relationship
 Iterable<Relationship> Node.getRelationships()
          Returns all the relationships attached to this node.
 Iterable<Relationship> Node.getRelationships(Direction dir)
          Returns all OUTGOING or INCOMING relationships from this node.
 Iterable<Relationship> Node.getRelationships(RelationshipType... types)
          Returns all the relationships of any of the types in types that are attached to this node, regardless of direction.
 Iterable<Relationship> Node.getRelationships(RelationshipType type, Direction dir)
          Returns all relationships with the given type and direction that are attached to this node.
 

Uses of Relationship in org.neo4j.kernel
 

Methods in org.neo4j.kernel that return Relationship
 Relationship EmbeddedGraphDatabase.getRelationshipById(long id)
           
 Relationship EmbeddedReadOnlyGraphDatabase.getRelationshipById(long id)
           
 



Copyright © 2010 Neo4j. All Rights Reserved.