Uses of Interface
org.neo4j.graphdb.index.IndexHits

Packages that use IndexHits
org.neo4j.graphdb.index Integrated API for node and relationship indexing. 
org.neo4j.unsafe.batchinsert Tools for high-performance data insertion; make sure to read the instructions before using. 
 

Uses of IndexHits in org.neo4j.graphdb.index
 

Methods in org.neo4j.graphdb.index that return IndexHits
 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.
 

Uses of IndexHits in org.neo4j.unsafe.batchinsert
 

Methods in org.neo4j.unsafe.batchinsert that return IndexHits
 IndexHits<Long> BatchInserterIndex.get(String key, Object value)
          Returns exact matches from this index, given the key/value pair.
 IndexHits<Long> BatchInserterIndex.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<Long> BatchInserterIndex.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.
 



Copyright © 2002-2013 The Neo4j Graph Database Project. All Rights Reserved.