Spring Data Neo4j

Uses of Interface
org.springframework.data.neo4j.aspects.core.NodeBacked

Packages that use NodeBacked
org.springframework.data.neo4j.aspects.core   
org.springframework.data.neo4j.cross_store.support.node   
 

Uses of NodeBacked in org.springframework.data.neo4j.aspects.core
 

Methods in org.springframework.data.neo4j.aspects.core with type parameters of type NodeBacked
<S extends NodeBacked,E extends NodeBacked>
Iterable<EntityPath<S,E>>
NodeBacked.findAllPathsByTraversal(org.neo4j.graphdb.traversal.TraversalDescription traversalDescription)
          Perform a traversal from this entity's underlying node with the given traversal description.
<S extends NodeBacked,E extends NodeBacked>
Iterable<EntityPath<S,E>>
NodeBacked.findAllPathsByTraversal(org.neo4j.graphdb.traversal.TraversalDescription traversalDescription)
          Perform a traversal from this entity's underlying node with the given traversal description.
<T extends NodeBacked>
T
NodeBacked.persist()
          Attach the entity inside a running transaction.
<T extends NodeBacked>
T
NodeBacked.projectTo(Class<T> targetType)
          Reify this entity as another node backed type.
<R extends RelationshipBacked,N extends NodeBacked>
R
NodeBacked.relateTo(N target, Class<R> relationshipClass, String relationshipType)
          delegates to relateTo with allowDuplicates set to false
<R extends RelationshipBacked,N extends NodeBacked>
R
NodeBacked.relateTo(N target, Class<R> relationshipClass, String relationshipType, boolean allowDuplicates)
           Creates a relationship to the target node, returning a relationship entity representing the created relationship.
 

Methods in org.springframework.data.neo4j.aspects.core with parameters of type NodeBacked
<R extends RelationshipBacked>
R
NodeBacked.getRelationshipTo(NodeBacked target, Class<R> relationshipClass, String type)
          Finds the relationship of the specified type, from this entity's underlying node to the target entity's underlying node.
 org.neo4j.graphdb.Relationship NodeBacked.getRelationshipTo(NodeBacked target, String type)
          Finds the relationship of the specified type, from this entity's underlying node to the target entity's underlying node.
 org.neo4j.graphdb.Relationship NodeBacked.relateTo(NodeBacked target, String type)
          delegates to relateTo with allowDuplicates set to false
 org.neo4j.graphdb.Relationship NodeBacked.relateTo(NodeBacked target, String type, boolean allowDuplicates)
          Creates a relationship to the target node entity with the given relationship type.
 void NodeBacked.removeRelationshipTo(NodeBacked target, String relationshipType)
          Removes the all relationships of the given type between this entity's underlying node and the target entity's underlying node.
 

Uses of NodeBacked in org.springframework.data.neo4j.cross_store.support.node
 

Classes in org.springframework.data.neo4j.cross_store.support.node with type parameters of type NodeBacked
 class CrossStoreNodeEntityState<ENTITY extends NodeBacked>
           
 

Constructors in org.springframework.data.neo4j.cross_store.support.node with parameters of type NodeBacked
CrossStoreNodeEntityState(org.neo4j.graphdb.Node underlyingState, NodeBacked entity, Class<? extends NodeBacked> type, Neo4jTemplate template, javax.persistence.PersistenceUnitUtil persistenceUnitUtil, DelegatingFieldAccessorFactory delegatingFieldAccessorFactory, Neo4jPersistentEntity persistentEntity)
           
 

Constructor parameters in org.springframework.data.neo4j.cross_store.support.node with type arguments of type NodeBacked
CrossStoreNodeEntityState(org.neo4j.graphdb.Node underlyingState, NodeBacked entity, Class<? extends NodeBacked> type, Neo4jTemplate template, javax.persistence.PersistenceUnitUtil persistenceUnitUtil, DelegatingFieldAccessorFactory delegatingFieldAccessorFactory, Neo4jPersistentEntity persistentEntity)
           
 


Spring Data Neo4j

Copyright © 2013 SpringSource. All Rights Reserved.