Spring Data Graph

Uses of Class
org.springframework.data.document.mongodb.query.Query

Packages that use Query
org.springframework.data.document.mongodb MongoDB core support. 
org.springframework.data.document.mongodb.query MongoDB specific query and update support. 
 

Uses of Query in org.springframework.data.document.mongodb
 

Methods in org.springframework.data.document.mongodb with parameters of type Query
<T> List<T>
MongoTemplate.find(Query query, Class<T> targetClass)
           
<T> List<T>
MongoOperations.find(Query query, Class<T> targetClass)
          Map the results of an ad-hoc query on the default MongoDB collection to a List of the specified type.
<T> List<T>
MongoTemplate.find(Query query, Class<T> targetClass, MongoReader<T> reader)
           
<T> List<T>
MongoOperations.find(Query query, Class<T> targetClass, MongoReader<T> reader)
          Map the results of an ad-hoc query on the default MongoDB collection to a List of the specified type.
<T> List<T>
MongoTemplate.find(String collectionName, Query query, Class<T> targetClass)
           
<T> List<T>
MongoOperations.find(String collectionName, Query query, Class<T> targetClass)
          Map the results of an ad-hoc query on the specified collection to a List of the specified type.
<T> List<T>
MongoTemplate.find(String collectionName, Query query, Class<T> targetClass, CursorPreparer preparer)
           
<T> List<T>
MongoOperations.find(String collectionName, Query query, Class<T> targetClass, CursorPreparer preparer)
          Map the results of an ad-hoc query on the specified collection to a List of the specified type.
<T> List<T>
MongoTemplate.find(String collectionName, Query query, Class<T> targetClass, MongoReader<T> reader)
           
<T> List<T>
MongoOperations.find(String collectionName, Query query, Class<T> targetClass, MongoReader<T> reader)
          Map the results of an ad-hoc query on the specified collection to a List of the specified type.
<T> T
MongoTemplate.findOne(Query query, Class<T> targetClass)
           
<T> T
MongoOperations.findOne(Query query, Class<T> targetClass)
          Map the results of an ad-hoc query on the default MongoDB collection to a single instance of an object of the specified type.
<T> T
MongoTemplate.findOne(Query query, Class<T> targetClass, MongoReader<T> reader)
           
<T> T
MongoOperations.findOne(Query query, Class<T> targetClass, MongoReader<T> reader)
          Map the results of an ad-hoc query on the default MongoDB collection to a single instance of an object of the specified type.
<T> T
MongoTemplate.findOne(String collectionName, Query query, Class<T> targetClass)
           
<T> T
MongoOperations.findOne(String collectionName, Query query, Class<T> targetClass)
          Map the results of an ad-hoc query on the specified collection to a single instance of an object of the specified type.
<T> T
MongoTemplate.findOne(String collectionName, Query query, Class<T> targetClass, MongoReader<T> reader)
           
<T> T
MongoOperations.findOne(String collectionName, Query query, Class<T> targetClass, MongoReader<T> reader)
          Map the results of an ad-hoc query on the specified collection to a single instance of an object of the specified type.
 void MongoTemplate.remove(Query query)
           
 void MongoOperations.remove(Query query)
          Remove all documents from the default collection that match the provided query document criteria.
 void MongoTemplate.remove(String collectionName, Query query)
           
 void MongoOperations.remove(String collectionName, Query query)
          Remove all documents from the specified collection that match the provided query document criteria.
 WriteResult MongoTemplate.updateFirst(Query query, Update update)
           
 WriteResult MongoOperations.updateFirst(Query query, Update update)
          Updates the first object that is found in the default collection that matches the query document with the provided updated document.
 WriteResult MongoTemplate.updateFirst(String collectionName, Query query, Update update)
           
 WriteResult MongoOperations.updateFirst(String collectionName, Query query, Update update)
          Updates the first object that is found in the specified collection that matches the query document criteria with the provided updated document.
 WriteResult MongoTemplate.updateMulti(Query query, Update update)
           
 WriteResult MongoOperations.updateMulti(Query query, Update update)
          Updates all objects that are found in the default collection that matches the query document criteria with the provided updated document.
 WriteResult MongoTemplate.updateMulti(String collectionName, Query query, Update update)
           
 WriteResult MongoOperations.updateMulti(String collectionName, Query query, Update update)
          Updates all objects that are found in the specified collection that matches the query document criteria with the provided updated document.
 

Uses of Query in org.springframework.data.document.mongodb.query
 

Subclasses of Query in org.springframework.data.document.mongodb.query
 class BasicQuery
           
 class OrQuery
           
 

Methods in org.springframework.data.document.mongodb.query that return Query
 Query Query.and(Criteria criteria)
           
 Query BasicQuery.and(Criteria criteria)
           
 Query Query.limit(int limit)
           
protected  Query Query.or(Query... queries)
           
 Query Query.skip(int skip)
           
 

Methods in org.springframework.data.document.mongodb.query with parameters of type Query
protected  Query Query.or(Query... queries)
           
 

Method parameters in org.springframework.data.document.mongodb.query with type arguments of type Query
 void Criteria.or(List<Query> queries)
          Creates an or query using the $or operator for all of the provided queries
 

Constructors in org.springframework.data.document.mongodb.query with parameters of type Query
OrCriteria(Query[] queries)
           
OrQuery(Query... q)
           
 


Spring Data Graph

Copyright © 2011. All Rights Reserved.