|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Uses of RelationshipType in org.neo4j.api.core |
|---|
| Methods in org.neo4j.api.core that return RelationshipType | |
|---|---|
RelationshipType |
EmbeddedNeo.createAndRegisterRelationshipType(String name)
Deprecated. Not required now that relationship types are created dynamically. Will be removed in next release. |
RelationshipType |
EmbeddedNeo.getRelationshipType(String name)
Deprecated. Might not be needed now that relationship types are created dynamically. |
RelationshipType |
Relationship.getType()
Returns the type of this relationship. |
RelationshipType |
EmbeddedNeo.registerRelationshipType(String name)
Deprecated. Not required now that relationship types are created dynamically. Will be removed in next release. |
| Methods in org.neo4j.api.core that return types with arguments of type RelationshipType | |
|---|---|
Iterable<RelationshipType> |
EmbeddedNeo.getRelationshipTypes()
Deprecated. Might not be needed now that relationship types are created dynamically. |
| Methods in org.neo4j.api.core with parameters of type RelationshipType | |
|---|---|
Relationship |
Node.createRelationshipTo(Node otherNode,
RelationshipType type)
Creates a relationship between this node and another 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. |
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. |
boolean |
Node.hasRelationship(RelationshipType... types)
Returns true if there are any relationships of any of the
types in types attached to this node (regardless of
direction), false otherwise. |
boolean |
Node.hasRelationship(RelationshipType type,
Direction dir)
Returns true if there are any relationships of the given
relationship type and direction attached to this node, false
otherwise. |
boolean |
Relationship.isType(RelationshipType type)
Indicates whether this relationship is of the type type. |
void |
EmbeddedNeo.registerRelationshipTypes(RelationshipType[] types)
Deprecated. Not required now that relationship types are created dynamically. Will be removed in next release. |
Traverser |
Node.traverse(Traverser.Order traversalOrder,
StopEvaluator stopEvaluator,
ReturnableEvaluator returnableEvaluator,
RelationshipType relationshipType,
Direction direction)
Instantiates a traverser that will start at this node and traverse according to the given order and evaluators along the specified relationship type and direction. |
Traverser |
Node.traverse(Traverser.Order traversalOrder,
StopEvaluator stopEvaluator,
ReturnableEvaluator returnableEvaluator,
RelationshipType firstRelationshipType,
Direction firstDirection,
RelationshipType secondRelationshipType,
Direction secondDirection)
Instantiates a traverser that will start at this node and traverse according to the given order and evaluators along the two specified relationship type and direction pairs. |
| Method parameters in org.neo4j.api.core with type arguments of type RelationshipType | |
|---|---|
void |
EmbeddedNeo.registerEnumRelationshipTypes(Class<? extends RelationshipType> relationshipTypes)
Deprecated. Not required now that relationship types are created dynamically. Will be removed in next release. |
void |
EmbeddedNeo.registerRelationshipTypes(Iterable<RelationshipType> types)
Deprecated. Not required now that relationship types are created dynamically. Will be removed in next release. |
| Constructor parameters in org.neo4j.api.core with type arguments of type RelationshipType | |
|---|---|
EmbeddedNeo(Class<? extends RelationshipType> validRelationshipTypesEnum,
String storeDir)
Deprecated. Not required now that relationship types are created dynamically. Will be removed in next release. |
|
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||