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() |
Set<Class<?>> |
getRestrictedTypes() |
int |
getSkip() |
com.mongodb.DBObject |
getSortObject() |
int |
hashCode() |
static boolean |
isRestrictedTypeKey(String key)
Deprecated.
don't call this method as the restricted type handling will undergo some significant changes going
forward.
|
Query |
limit(int limit) |
static Query |
query(Criteria criteria)
|
Query |
restrict(Class<?> type,
Class<?>... additionalTypes)
Restricts the query to only return documents instances that are exactly of the given types.
|
Query |
skip(int skip) |
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.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 Query restrict(Class<?> type, Class<?>... additionalTypes)
type
- may not be nulladditionalTypes
- may not be nullpublic com.mongodb.DBObject getQueryObject()
public com.mongodb.DBObject getFieldsObject()
public com.mongodb.DBObject getSortObject()
public int getSkip()
public int getLimit()
public String getHint()
@Deprecated public static boolean isRestrictedTypeKey(String key)
key
- Copyright © 2011-2013-2013 Pivotal. All Rights Reserved.