Spring Data Neo4j

org.springframework.data.neo4j.core
Interface EntityPath<S,E>

All Superinterfaces:
Iterable<org.neo4j.graphdb.PropertyContainer>, org.neo4j.graphdb.Path
All Known Implementing Classes:
ConvertingEntityPath

public interface EntityPath<S,E>
extends org.neo4j.graphdb.Path

Since:
08.04.11
Author:
mh

Method Summary
<T> Iterable<T>
allPathEntities(Class<T>... relationships)
           
<T> T
endEntity(Class<T>... types)
           
<T> T
lastRelationshipEntity(Class<T>... types)
           
<T> Iterable<T>
nodeEntities()
           
<T> Iterable<T>
relationshipEntities(Class<T>... relationships)
           
<T> T
startEntity(Class<T>... types)
           
 
Methods inherited from interface org.neo4j.graphdb.Path
endNode, iterator, lastRelationship, length, nodes, relationships, startNode, toString
 

Method Detail

startEntity

<T> T startEntity(Class<T>... types)

endEntity

<T> T endEntity(Class<T>... types)

lastRelationshipEntity

<T> T lastRelationshipEntity(Class<T>... types)

nodeEntities

<T> Iterable<T> nodeEntities()

relationshipEntities

<T> Iterable<T> relationshipEntities(Class<T>... relationships)

allPathEntities

<T> Iterable<T> allPathEntities(Class<T>... relationships)

Spring Data Neo4j

Copyright © 2012 SpringSource. All Rights Reserved.