Package | Description |
---|---|
org.neo4j.graphdb.index |
Integrated API for node and relationship indexing.
|
Modifier and Type | Method and Description |
---|---|
IndexHits<T> |
ReadableIndex.get(String key,
Object value)
Returns exact matches from this index, given the key/value pair.
|
IndexHits<Relationship> |
ReadableRelationshipIndex.get(String key,
Object valueOrNull,
Node startNodeOrNull,
Node endNodeOrNull)
Returns exact matches from this index, given the key/value pair.
|
IndexHits<T> |
ReadableIndex.query(Object queryOrQueryObject)
Returns matches from this index based on the supplied query object,
which can be a query string or an implementation-specific query object.
|
IndexHits<Relationship> |
ReadableRelationshipIndex.query(Object queryOrQueryObjectOrNull,
Node startNodeOrNull,
Node endNodeOrNull)
Returns matches from this index based on the supplied query object, which
can be a query string or an implementation-specific query object.
|
IndexHits<T> |
ReadableIndex.query(String key,
Object queryOrQueryObject)
Returns matches from this index based on the supplied
key and
query object, which can be a query string or an implementation-specific
query object. |
IndexHits<Relationship> |
ReadableRelationshipIndex.query(String key,
Object queryOrQueryObjectOrNull,
Node startNodeOrNull,
Node endNodeOrNull)
Returns matches from this index based on the supplied
key and
query object, which can be a query string or an implementation-specific
query object. |
Copyright © 2002–2016 The Neo4j Graph Database Project. All rights reserved.