Spring Data Neo4j

Uses of Interface
org.springframework.data.neo4j.conversion.EndResult

Packages that use EndResult
org.springframework.data.neo4j.conversion   
org.springframework.data.neo4j.repository   
org.springframework.data.neo4j.support   
org.springframework.data.neo4j.template   
 

Uses of EndResult in org.springframework.data.neo4j.conversion
 

Subinterfaces of EndResult in org.springframework.data.neo4j.conversion
 interface Result<T>
           
 

Classes in org.springframework.data.neo4j.conversion that implement EndResult
 class QueryResultBuilder<T>
           
 

Methods in org.springframework.data.neo4j.conversion that return EndResult
<R> EndResult<R>
Result.to(Class<R> type)
           
<R> EndResult<R>
QueryResultBuilder.to(Class<R> type)
           
<R> EndResult<R>
Result.to(Class<R> type, ResultConverter<T,R> resultConverter)
           
<R> EndResult<R>
QueryResultBuilder.to(Class<R> type, ResultConverter<T,R> resultConverter)
           
 

Uses of EndResult in org.springframework.data.neo4j.repository
 

Methods in org.springframework.data.neo4j.repository that return EndResult
 EndResult<T> CRUDRepository.findAll()
          uses the configured TypeRepresentationStrategy to load all entities, might return a large result
 EndResult<T> AbstractGraphRepository.findAll()
           
 EndResult<T> CRUDRepository.findAll(org.springframework.data.domain.Sort sort)
          finder that takes the provided sorting into account NOTE: the sorting is not yet implemented
 EndResult<T> AbstractGraphRepository.findAll(org.springframework.data.domain.Sort sort)
           
 EndResult<T> IndexRepository.findAllByPropertyValue(String property, Object value)
           
 EndResult<T> AbstractGraphRepository.findAllByPropertyValue(String property, Object value)
          Index based exact finder, uses the default index name for this type (short class name).
 EndResult<T> NamedIndexRepository.findAllByPropertyValue(String indexName, String property, Object value)
           
 EndResult<T> AbstractGraphRepository.findAllByPropertyValue(String indexName, String property, Object value)
          Index based exact finder.
 EndResult<T> IndexRepository.findAllByQuery(String key, Object query)
           
 EndResult<T> AbstractGraphRepository.findAllByQuery(String key, Object query)
          Index based fulltext / query object finder, uses the default index name for this type (short class name).
 EndResult<T> NamedIndexRepository.findAllByQuery(String indexName, String key, Object query)
           
 EndResult<T> AbstractGraphRepository.findAllByQuery(String indexName, String property, Object query)
          Index based fulltext / query object finder.
 EndResult<T> IndexRepository.findAllByRange(String property, Number from, Number to)
           
 EndResult<T> AbstractGraphRepository.findAllByRange(String property, Number from, Number to)
           
 EndResult<T> NamedIndexRepository.findAllByRange(String indexName, String property, Number from, Number to)
           
 EndResult<T> AbstractGraphRepository.findAllByRange(String indexName, String property, Number from, Number to)
           
 EndResult<T> SpatialRepository.findWithinBoundingBox(String indexName, double lowerLeftLat, double lowerLeftLon, double upperRightLat, double upperRightLon)
           
 EndResult<T> AbstractGraphRepository.findWithinBoundingBox(String indexName, double lowerLeftLat, double lowerLeftLon, double upperRightLat, double upperRightLon)
           
 EndResult<T> SpatialRepository.findWithinDistance(String indexName, double lat, double lon, double distanceKm)
           
 EndResult<T> AbstractGraphRepository.findWithinDistance(String indexName, double lat, double lon, double distanceKm)
           
 EndResult<T> SpatialRepository.findWithinWellKnownText(String indexName, String wellKnownText)
           
 EndResult<T> AbstractGraphRepository.findWithinWellKnownText(String indexName, String wellKnownText)
           
 EndResult<T> CypherDslRepository.query(org.neo4j.cypherdsl.Execute query, Map<String,Object> params)
           
 EndResult<T> AbstractGraphRepository.query(org.neo4j.cypherdsl.Execute query, Map<String,Object> params)
           
 

Uses of EndResult in org.springframework.data.neo4j.support
 

Methods in org.springframework.data.neo4j.support that return EndResult
<T> EndResult<T>
Neo4jTemplate.findAll(Class<T> entityClass)
           
 

Uses of EndResult in org.springframework.data.neo4j.template
 

Methods in org.springframework.data.neo4j.template that return EndResult
<T> EndResult<T>
Neo4jOperations.findAll(Class<T> entityClass)
          Provides all instances of a given entity type using the typerepresentation strategy configured for this template.
 


Spring Data Neo4j

Copyright © 2012 SpringSource. All Rights Reserved.