| Package | Description |
|---|---|
| com.avos.avoscloud |
| Modifier and Type | Method and Description |
|---|---|
AVFriendshipQuery<T> |
AVFriendshipQuery.addAscendingOrder(String key)
Also sorts the results in ascending order by the given key.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.addDescendingOrder(String key)
Also sorts the results in descending order by the given key.
|
protected AVFriendshipQuery<T> |
AVFriendshipQuery.addWhereItem(String key,
String op,
Object value) |
AVFriendshipQuery |
AVUser.friendshipQuery()
获取用户好友关系的查询条件,同时包括用户的关注和用户粉丝
|
<T extends AVUser> |
AVUser.friendshipQuery(Class<T> clazz)
获取用户好友关系的查询条件,同时包括用户的关注和用户粉丝
|
static <T extends AVUser> |
AVUser.friendshipQuery(String userId)
获取用户好友关系的查询条件,同时包括用户的关注和用户粉丝
|
static <T extends AVUser> |
AVUser.friendshipQuery(String userId,
Class<T> clazz)
获取用户好友关系的查询条件,同时包括用户的关注和用户粉丝
|
AVFriendshipQuery<T> |
AVFriendshipQuery.include(String key)
Include nested AVObjects for the provided key.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.limit(int limit) |
AVFriendshipQuery<T> |
AVFriendshipQuery.order(String order) |
AVFriendshipQuery<T> |
AVFriendshipQuery.orderByAscending(String key)
Sorts the results in ascending order by the given key.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.orderByDescending(String key)
Sorts the results in descending order by the given key.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.selectKeys(Collection<String> keys)
Restrict the fields of returned AVObjects to only include the provided keys.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.setLimit(int limit)
Controls the maximum number of results that are returned.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.setOrder(String order)
Set query order fields.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.setSkip(int skip)
Controls the number of results to skip before returning any results.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.skip(int skip) |
AVFriendshipQuery<T> |
AVFriendshipQuery.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.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereContains(String key,
String substring)
Add a constraint for finding string values that contain a provided string.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereContainsAll(String key,
Collection<?> values)
Add a constraint to the query that requires a particular key's value match another
AVFriendshipQuery.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereDoesNotExist(String key)
Add a constraint for finding objects that do not contain a given key.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereEndsWith(String key,
String suffix)
Add a constraint for finding string values that end with a provided string.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.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.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereExists(String key)
Add a constraint for finding objects that contain the given key.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.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.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereGreaterThanOrEqualTo(String key,
Object value)
Add a constraint to the query that requires a particular key's value to be greater or equal to
than the provided value.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.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.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereLessThanOrEqualTo(String key,
Object value)
Add a constraint to the query that requires a particular key's value to be less or equal to
than the provided value.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereMatches(String key,
String regex)
Add a regular expression constraint for finding string values that match the provided regular
expression.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereMatches(String key,
String regex,
String modifiers)
Add a regular expression constraint for finding string values that match the provided regular
expression.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereNear(String key,
AVGeoPoint point)
Add a proximity based constraint for finding objects with key point values near the point
given.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.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.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.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.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereSizeEqual(String key,
int size)
添加查询约束条件,查找key类型是数组,该数组的长度匹配提供的数值。
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereStartsWith(String key,
String prefix)
Add a constraint for finding string values that start with a provided string.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereWithinGeoBox(String key,
AVGeoPoint southwest,
AVGeoPoint northeast)
Add a constraint to the query that requires a particular key's coordinates be contained within
a given rectangular geographic bounding box.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereWithinKilometers(String key,
AVGeoPoint 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.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereWithinMiles(String key,
AVGeoPoint 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.
|
AVFriendshipQuery<T> |
AVFriendshipQuery.whereWithinRadians(String key,
AVGeoPoint 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.
|
Copyright © 2017. All rights reserved.