Spring Data Document

Uses of Interface
org.springframework.data.mongodb.core.CursorPreparer

Packages that use CursorPreparer
org.springframework.data.mongodb.core MongoDB core support. 
 

Uses of CursorPreparer in org.springframework.data.mongodb.core
 

Methods in org.springframework.data.mongodb.core with parameters of type CursorPreparer
protected
<S,T> List<T>
MongoTemplate.doFind(String collectionName, DBObject query, DBObject fields, Class<S> entityClass, CursorPreparer preparer, org.springframework.data.mongodb.core.MongoTemplate.DbObjectCallback<T> objectCallback)
           
protected
<T> List<T>
MongoTemplate.doFind(String collectionName, DBObject query, DBObject fields, Class<T> entityClass, CursorPreparer preparer)
          Map the results of an ad-hoc query on the default MongoDB collection to a List of the specified type.
 void MongoTemplate.executeQuery(Query query, String collectionName, DocumentCallbackHandler dch, CursorPreparer preparer)
           
 void MongoOperations.executeQuery(Query query, String collectionName, DocumentCallbackHandler dch, CursorPreparer preparer)
          Execute a MongoDB query and iterate over the query results on a per-document basis with a DocumentCallbackHandler using the provided CursorPreparer.
<T> List<T>
MongoTemplate.find(Query query, Class<T> entityClass, CursorPreparer preparer, String collectionName)
           
<T> List<T>
MongoOperations.find(Query query, Class<T> entityClass, CursorPreparer preparer, String collectionName)
          Map the results of an ad-hoc query on the specified collection to a List of the specified type.
 


Spring Data Document

Copyright © 2011. All Rights Reserved.