| Modifier and Type | Class and Description |
|---|---|
class |
QueryResultBuilder<T> |
| Modifier and Type | Method and Description |
|---|---|
<R> Result<R> |
Result.to(Class<R> type) |
<R> Result<R> |
QueryResultBuilder.to(Class<R> type) |
<R> Result<R> |
Result.to(Class<R> type,
ResultConverter<T,R> resultConverter) |
<R> Result<R> |
QueryResultBuilder.to(Class<R> type,
ResultConverter<T,R> resultConverter) |
Result<T> |
Result.with(MappingPolicy mappingPolicy) |
Result<T> |
QueryResultBuilder.with(MappingPolicy mappingPolicy) |
| Modifier and Type | Method and Description |
|---|---|
Result<T> |
CRUDRepository.findAll()
uses the configured TypeRepresentationStrategy to load all entities, might return a large result
|
Result<T> |
AbstractGraphRepository.findAll() |
Result<T> |
CRUDRepository.findAll(Sort sort)
finder that takes the provided sorting into account
NOTE: the sorting is not yet implemented
|
Result<T> |
AbstractGraphRepository.findAll(Sort sort) |
Result<T> |
IndexRepository.findAllByPropertyValue(String property,
Object value)
Deprecated.
|
Result<T> |
AbstractGraphRepository.findAllByPropertyValue(String property,
Object value)
Index based exact finder, uses the default index name for this type (short class name).
|
Result<T> |
NamedIndexRepository.findAllByPropertyValue(String indexName,
String property,
Object value)
Deprecated.
|
Result<T> |
LegacyIndexSearcher.findAllByPropertyValue(String indexName,
String property,
Object value)
Deprecated.
|
Result<T> |
AbstractGraphRepository.findAllByPropertyValue(String indexName,
String property,
Object value)
Deprecated.
|
Result<T> |
IndexRepository.findAllByQuery(String key,
Object query)
Deprecated.
|
Result<T> |
AbstractGraphRepository.findAllByQuery(String key,
Object query)
Deprecated.
|
Result<T> |
NamedIndexRepository.findAllByQuery(String indexName,
String key,
Object query)
Deprecated.
|
Result<T> |
LegacyIndexSearcher.findAllByQuery(String indexName,
String property,
Object query)
Deprecated.
|
Result<T> |
AbstractGraphRepository.findAllByQuery(String indexName,
String property,
Object query)
Deprecated.
|
Result<T> |
IndexRepository.findAllByRange(String property,
Number from,
Number to)
Deprecated.
|
Result<T> |
AbstractGraphRepository.findAllByRange(String property,
Number from,
Number to)
Deprecated.
|
Result<T> |
NamedIndexRepository.findAllByRange(String indexName,
String property,
Number from,
Number to)
Deprecated.
|
Result<T> |
LegacyIndexSearcher.findAllByRange(String indexName,
String property,
Number from,
Number to)
Deprecated.
|
Result<T> |
AbstractGraphRepository.findAllByRange(String indexName,
String property,
Number from,
Number to)
Deprecated.
|
Result<T> |
SchemaIndexRepository.findAllBySchemaPropertyValue(String property,
Object value)
Finds all entities which have a schema indexed property set to specified value.
|
Result<T> |
AbstractGraphRepository.findAllBySchemaPropertyValue(String property,
Object value)
Schema (aka Label based) finder, uses the default label name for this type
to lookup entities.
|
Result<T> |
SpatialRepository.findWithinBoundingBox(String indexName,
Box box) |
Result<T> |
GeoQueries.findWithinBoundingBox(String indexName,
Box box) |
Result<T> |
AbstractGraphRepository.findWithinBoundingBox(String indexName,
Box box) |
Result<T> |
SpatialRepository.findWithinBoundingBox(String indexName,
double lowerLeftLat,
double lowerLeftLon,
double upperRightLat,
double upperRightLon) |
Result<T> |
GeoQueries.findWithinBoundingBox(String indexName,
double lowerLeftLat,
double lowerLeftLon,
double upperRightLat,
double upperRightLon) |
Result<T> |
AbstractGraphRepository.findWithinBoundingBox(String indexName,
double lowerLeftLat,
double lowerLeftLon,
double upperRightLat,
double upperRightLon) |
Result<T> |
SpatialRepository.findWithinDistance(String indexName,
Circle circle) |
Result<T> |
GeoQueries.findWithinDistance(String indexName,
Circle circle) |
Result<T> |
AbstractGraphRepository.findWithinDistance(String indexName,
Circle circle) |
Result<T> |
SpatialRepository.findWithinDistance(String indexName,
double lat,
double lon,
double distanceKm) |
Result<T> |
GeoQueries.findWithinDistance(String indexName,
double lat,
double lon,
double distanceKm) |
Result<T> |
AbstractGraphRepository.findWithinDistance(String indexName,
double lat,
double lon,
double distanceKm) |
Result<T> |
SpatialRepository.findWithinShape(String indexName,
Shape shape)
Converts the shape into a well-known text representation and executes the appropriate WKT query
|
Result<T> |
GeoQueries.findWithinShape(String indexName,
Shape shape) |
Result<T> |
AbstractGraphRepository.findWithinShape(String indexName,
Shape shape) |
Result<T> |
SpatialRepository.findWithinWellKnownText(String indexName,
String wellKnownText) |
Result<T> |
GeoQueries.findWithinWellKnownText(String indexName,
String wellKnownText) |
Result<T> |
AbstractGraphRepository.findWithinWellKnownText(String indexName,
String wellKnownText) |
<T> Result<T> |
LegacyIndexSearcher.geoQuery(String indexName,
String geoQuery,
Object params)
Deprecated.
|
Result<T> |
CypherDslRepository.query(org.neo4j.cypherdsl.grammar.Execute query,
Map<String,Object> params) |
Result<T> |
AbstractGraphRepository.query(org.neo4j.cypherdsl.grammar.Execute query,
Map<String,Object> params) |
Result<T> |
CRUDRepository.query(String query,
Map<String,Object> params) |
Result<T> |
AbstractGraphRepository.query(String query,
Map<String,Object> params) |
| Modifier and Type | Method and Description |
|---|---|
Result<Map<String,Object>> |
SpringRestCypherQueryEngine.query(String statement,
Map<String,Object> params) |
| Modifier and Type | Method and Description |
|---|---|
<T> Result<T> |
Neo4jTemplate.convert(Iterable<T> iterable) |
<T> Result<T> |
Neo4jTemplate.findAll(Class<T> entityClass) |
<T> Result<T> |
Neo4jTemplate.findByIndexedValue(Class<? extends T> indexedType,
String propertyName,
Object value) |
<T extends org.neo4j.graphdb.PropertyContainer> |
Neo4jTemplate.lookup(Class<?> indexedType,
String propertyName,
Object value) |
<T extends org.neo4j.graphdb.PropertyContainer> |
Neo4jTemplate.lookup(String indexName,
Object query) |
<T extends org.neo4j.graphdb.PropertyContainer> |
Neo4jTemplate.lookup(String indexName,
String field,
Object value) |
Result<Map<String,Object>> |
Neo4jTemplate.query(String statement,
Map<String,Object> params) |
Result<org.neo4j.graphdb.Path> |
Neo4jTemplate.traverse(org.neo4j.graphdb.Node startNode,
org.neo4j.graphdb.traversal.TraversalDescription traversal) |
Result<org.neo4j.graphdb.Path> |
Neo4jTemplate.traverse(Object start,
org.neo4j.graphdb.traversal.TraversalDescription traversal) |
| Modifier and Type | Method and Description |
|---|---|
Result<T> |
QueryEngine.query(String statement,
Map<String,Object> params) |
Result<Map<String,Object>> |
CypherQueryEngineImpl.query(String statement,
Map<String,Object> params) |
| Modifier and Type | Method and Description |
|---|---|
<T> Result<T> |
SchemaIndexProvider.findAll(Neo4jPersistentEntity entity) |
<T> Result<T> |
SchemaIndexProvider.findByIndexedValue(Neo4jPersistentProperty property,
Object value) |
| Modifier and Type | Method and Description |
|---|---|
<T> Result<T> |
Neo4jOperations.convert(Iterable<T> iterable)
Converts the Iterable into a Result object for uniform handling.
|
<T> Result<T> |
Neo4jOperations.findAll(Class<T> entityClass)
Provides all instances of a given entity type using the typerepresentation strategy configured for this template.
|
<T> Result<T> |
Neo4jOperations.findByIndexedValue(Class<? extends T> indexedType,
String propertyName,
Object value) |
<T extends org.neo4j.graphdb.PropertyContainer> |
Neo4jOperations.lookup(Class<?> indexedType,
String propertyName,
Object value)
The value or query-object is looked up in the index indicated by the property of the indexed type, so all the customization
via @Indexed annotations is taken into consideration.
|
<T extends org.neo4j.graphdb.PropertyContainer> |
Neo4jOperations.lookup(String indexName,
Object query)
The query is executed on the index returning the IndexHits wrapped in a Result to be converted
into Paths or Entities.
|
<T extends org.neo4j.graphdb.PropertyContainer> |
Neo4jOperations.lookup(String indexName,
String field,
Object value)
The value is looked up in the Neo4j index returning the IndexHits wrapped in a Result to be converted
into Paths or Entities.
|
Result<Map<String,Object>> |
Neo4jOperations.query(String statement,
Map<String,Object> params)
Runs the given cypher statement and packages the result in a Result, simple conversions via the
registered converter-factories are already executed via this method.
|
Result<org.neo4j.graphdb.Path> |
Neo4jOperations.traverse(org.neo4j.graphdb.Node startNode,
org.neo4j.graphdb.traversal.TraversalDescription traversal)
Traverses the graph starting at the given node with the provided traversal description.
|
Result<org.neo4j.graphdb.Path> |
Neo4jOperations.traverse(Object start,
org.neo4j.graphdb.traversal.TraversalDescription traversal)
Traverses the graph starting at the given node entity with the provided traversal description.
|
Copyright © 2011-2015–2016 Pivotal Software, Inc.. All rights reserved.