Spring Data Neo4j

org.springframework.data.neo4j.repository
Interface IndexRepository<T>

All Known Subinterfaces:
GraphRepository<T>
All Known Implementing Classes:
AbstractGraphRepository, NodeGraphRepository, RelationshipGraphRepository

public interface IndexRepository<T>

Since:
29.03.11
Author:
mh

Method Summary
 org.neo4j.helpers.collection.ClosableIterable<T> findAllByPropertyValue(String property, Object value)
           
 org.neo4j.helpers.collection.ClosableIterable<T> findAllByQuery(String key, Object query)
           
 org.neo4j.helpers.collection.ClosableIterable<T> findAllByRange(String property, Number from, Number to)
           
 T findByPropertyValue(String property, Object value)
           
 

Method Detail

findByPropertyValue

T findByPropertyValue(String property,
                      Object value)

findAllByPropertyValue

org.neo4j.helpers.collection.ClosableIterable<T> findAllByPropertyValue(String property,
                                                                        Object value)

findAllByQuery

org.neo4j.helpers.collection.ClosableIterable<T> findAllByQuery(String key,
                                                                Object query)

findAllByRange

org.neo4j.helpers.collection.ClosableIterable<T> findAllByRange(String property,
                                                                Number from,
                                                                Number to)

Spring Data Neo4j

Copyright © 2011 SpringSource. All Rights Reserved.