|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ParseQuery in com.parse |
---|
Methods in com.parse that return ParseQuery | |
---|---|
ParseQuery |
ParseQuery.addAscendingOrder(String key)
Also sorts the results in ascending order by the given key. |
ParseQuery |
ParseQuery.addDescendingOrder(String key)
Also sorts the results in descending order by the given key. |
static ParseQuery |
ParseUser.getQuery()
Constructs a query for ParseUsers. |
static ParseQuery |
ParseRole.getQuery()
Gets a ParseQuery over the Role collection. |
ParseQuery |
ParseRelation.getQuery()
Gets a query that can be used to query the objects in this relation. |
static ParseQuery |
ParseInstallation.getQuery()
Constructs a query for ParseInstallations. |
static ParseQuery |
ParseQuery.getUserQuery()
Deprecated. Please use ParseUser.getQuery() instead. |
static ParseQuery |
ParseQuery.or(List<ParseQuery> queries)
Constructs a query that is the or of the given queries. |
ParseQuery |
ParseQuery.orderByAscending(String key)
Sorts the results in ascending order by the given key. |
ParseQuery |
ParseQuery.orderByDescending(String key)
Sorts the results in descending order by the given key. |
ParseQuery |
ParseQuery.whereContainedIn(String key,
Collection<? extends Object> values)
Add a constraint to the query that requires a particular key's value to be contained in the provided list of values. |
ParseQuery |
ParseQuery.whereContains(String key,
String substring)
Add a constraint for finding string values that contain a provided string. |
ParseQuery |
ParseQuery.whereContainsAll(String key,
Collection<?> values)
Add a constraint to the query that requires a particular key's value to contain every one of the provided list of values. |
ParseQuery |
ParseQuery.whereDoesNotExist(String key)
Add a constraint for finding objects that do not contain a given key. |
ParseQuery |
ParseQuery.whereDoesNotMatchKeyInQuery(String key,
String keyInQuery,
ParseQuery query)
Add a constraint to the query that requires a particular key's value does not match any value for a key in the results of another ParseQuery. |
ParseQuery |
ParseQuery.whereDoesNotMatchQuery(String key,
ParseQuery query)
Add a constraint to the query that requires a particular key's value does not match another ParseQuery. |
ParseQuery |
ParseQuery.whereEndsWith(String key,
String suffix)
Add a constraint for finding string values that end with a provided string. |
ParseQuery |
ParseQuery.whereEqualTo(String key,
Object value)
Add a constraint to the query that requires a particular key's value to be equal to the provided value. |
ParseQuery |
ParseQuery.whereExists(String key)
Add a constraint for finding objects that contain the given key. |
ParseQuery |
ParseQuery.whereGreaterThan(String key,
Object value)
Add a constraint to the query that requires a particular key's value to be greater than the provided value. |
ParseQuery |
ParseQuery.whereGreaterThanOrEqualTo(String key,
Object value)
Add a constraint to the query that requires a particular key's value to be greater than or equal to the provided value. |
ParseQuery |
ParseQuery.whereLessThan(String key,
Object value)
Add a constraint to the query that requires a particular key's value to be less than the provided value. |
ParseQuery |
ParseQuery.whereLessThanOrEqualTo(String key,
Object value)
Add a constraint to the query that requires a particular key's value to be less than or equal to the provided value. |
ParseQuery |
ParseQuery.whereMatches(String key,
String regex)
Add a regular expression constraint for finding string values that match the provided regular expression. |
ParseQuery |
ParseQuery.whereMatches(String key,
String regex,
String modifiers)
Add a regular expression constraint for finding string values that match the provided regular expression. |
ParseQuery |
ParseQuery.whereMatchesKeyInQuery(String key,
String keyInQuery,
ParseQuery query)
Add a constraint to the query that requires a particular key's value matches a value for a key in the results of another ParseQuery |
ParseQuery |
ParseQuery.whereMatchesQuery(String key,
ParseQuery query)
Add a constraint to the query that requires a particular key's value match another ParseQuery. |
ParseQuery |
ParseQuery.whereNear(String key,
ParseGeoPoint point)
Add a proximity based constraint for finding objects with key point values near the point given. |
ParseQuery |
ParseQuery.whereNotContainedIn(String key,
Collection<? extends Object> values)
Add a constraint to the query that requires a particular key's value not be contained in the provided list of values. |
ParseQuery |
ParseQuery.whereNotEqualTo(String key,
Object value)
Add a constraint to the query that requires a particular key's value to be not equal to the provided value. |
ParseQuery |
ParseQuery.whereStartsWith(String key,
String prefix)
Add a constraint for finding string values that start with a provided string. |
ParseQuery |
ParseQuery.whereWithinGeoBox(String key,
ParseGeoPoint southwest,
ParseGeoPoint northeast)
Add a constraint to the query that requires a particular key's coordinates be contained within a given rectangular geographic bounding box. |
ParseQuery |
ParseQuery.whereWithinKilometers(String key,
ParseGeoPoint point,
double maxDistance)
Add a proximity based constraint for finding objects with key point values near the point given and within the maximum distance given. |
ParseQuery |
ParseQuery.whereWithinMiles(String key,
ParseGeoPoint point,
double maxDistance)
Add a proximity based constraint for finding objects with key point values near the point given and within the maximum distance given. |
ParseQuery |
ParseQuery.whereWithinRadians(String key,
ParseGeoPoint point,
double maxDistance)
Add a proximity based constraint for finding objects with key point values near the point given and within the maximum distance given. |
Methods in com.parse with parameters of type ParseQuery | |
---|---|
static void |
ParsePush.sendDataInBackground(JSONObject data,
ParseQuery query)
A helper method to concisely send a push to a query. |
static void |
ParsePush.sendDataInBackground(JSONObject data,
ParseQuery query,
SendCallback callback)
A helper method to concisely send a push to a query. |
static void |
ParsePush.sendMessageInBackground(String message,
ParseQuery query)
A helper method to concisely send a push message to a query. |
static void |
ParsePush.sendMessageInBackground(String message,
ParseQuery query,
SendCallback callback)
A helper method to concisely send a push message to a query. |
void |
ParsePush.setQuery(ParseQuery query)
Sets the query for this push for which this push notification will be sent. |
ParseQuery |
ParseQuery.whereDoesNotMatchKeyInQuery(String key,
String keyInQuery,
ParseQuery query)
Add a constraint to the query that requires a particular key's value does not match any value for a key in the results of another ParseQuery. |
ParseQuery |
ParseQuery.whereDoesNotMatchQuery(String key,
ParseQuery query)
Add a constraint to the query that requires a particular key's value does not match another ParseQuery. |
ParseQuery |
ParseQuery.whereMatchesKeyInQuery(String key,
String keyInQuery,
ParseQuery query)
Add a constraint to the query that requires a particular key's value matches a value for a key in the results of another ParseQuery |
ParseQuery |
ParseQuery.whereMatchesQuery(String key,
ParseQuery query)
Add a constraint to the query that requires a particular key's value match another ParseQuery. |
Method parameters in com.parse with type arguments of type ParseQuery | |
---|---|
static ParseQuery |
ParseQuery.or(List<ParseQuery> queries)
Constructs a query that is the or of the given queries. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |