public class Query extends Object
| Modifier and Type | Method and Description |
|---|---|
Query |
addCriteria(Criteria criteria)
|
boolean |
equals(Object obj) |
Field |
fields() |
protected List<Criteria> |
getCriteria() |
com.mongodb.DBObject |
getFieldsObject() |
String |
getHint() |
int |
getLimit() |
com.mongodb.DBObject |
getQueryObject() |
int |
getSkip() |
com.mongodb.DBObject |
getSortObject() |
int |
hashCode() |
Query |
limit(int limit) |
static Query |
query(Criteria criteria)
|
Query |
skip(int skip) |
Sort |
sort()
Deprecated.
use
with(Sort) instead |
String |
toString() |
Query |
with(Pageable pageable)
Sets the given pagination information on the
Query instance. |
Query |
with(Sort sort)
|
Query |
withHint(String name)
Configures the query to use the given hint when being executed.
|
public Query()
public Query(Criteria criteria)
criteria - must not be null.public Query addCriteria(Criteria criteria)
criteria - must not be null.public Field fields()
public Query skip(int skip)
public Query limit(int limit)
public Query withHint(String name)
name - must not be null or empty.@Deprecated public Sort sort()
with(Sort) insteadSort instance to define ordering properties.public Query with(Pageable pageable)
Query instance. Will transparently set skip and
limit as well as applying the Sort instance defined with the Pageable.pageable - public com.mongodb.DBObject getQueryObject()
public com.mongodb.DBObject getFieldsObject()
public com.mongodb.DBObject getSortObject()
public int getSkip()
public int getLimit()
public String getHint()
Copyright © 2011-2013-2013 SpringSource. All Rights Reserved.