LCQuery<T> |
LCQuery.addAscendingOrder(java.lang.String key) |
Also sorts the results in ascending order by the given key.
|
LCQuery<T> |
LCQuery.addDescendingOrder(java.lang.String key) |
Also sorts the results in descending order by the given key.
|
protected LCQuery<T> |
LCQuery.addWhereItem(java.lang.String key,
java.lang.String op,
java.lang.Object value) |
|
static <T extends LCObject> LCQuery<T> |
LCQuery.and(java.util.List<LCQuery<T>> queries) |
Constructs a query that is the and of the given queries.
|
LCQuery |
LCQuery.clone() |
Clone a new query object, which fully same to this.
|
LCQuery<LCObject> |
LCUser.followeeQuery() |
get followee query.
|
static <T extends LCObject> LCQuery<T> |
LCUser.followeeQuery(java.lang.String userObjectId,
java.lang.Class<T> clazz) |
get followee query.
|
LCQuery<LCObject> |
LCUser.followerQuery() |
get follower query.
|
static <T extends LCObject> LCQuery<T> |
LCUser.followerQuery(java.lang.String userObjectId,
java.lang.Class<T> clazz) |
get follower query.
|
LCQuery<LCObject> |
LCUser.friendshipBlockQuery() |
get block query.
|
static <T extends LCObject> LCQuery<T> |
LCUser.friendshipBlockQuery(java.lang.Class<T> clazz) |
get block query.
|
LCQuery<LCFriendship> |
LCUser.friendshipQuery(boolean isFollowerDirection) |
get friendship query of current user.
|
LCQuery<LCFriendshipRequest> |
LCUser.friendshipRequestQuery(int status,
boolean includeTargetUser,
boolean requestToMe) |
get query for AVFriendshipRequest.
|
LCQuery<? extends LCInstallation> |
LCPush.getPushQuery() |
Return push query instance.
|
static LCQuery<LCInstallation> |
LCInstallation.getQuery() |
|
static <T extends LCObject> LCQuery<T> |
LCObject.getQuery(java.lang.Class<T> clazz) |
Get query for class.
|
static <T extends LCObject> LCQuery<T> |
LCQuery.getQuery(java.lang.Class<T> clazz) |
Create a AVQuery with special sub-class.
|
static <T extends LCObject> LCQuery<T> |
LCQuery.getQuery(java.lang.String theClassName) |
Constructs a query.
|
LCQuery<T> |
LCRelation.getQuery() |
Gets a query that can be used to query the objects in this relation.
|
LCQuery<T> |
LCRelation.getQuery(java.lang.Class<T> clazz) |
Gets a query that can be used to query the subclass objects in this relation.
|
static LCQuery<LCRole> |
LCRole.getQuery() |
|
static LCQuery<LCUser> |
LCUser.getQuery() |
Get User Query
|
static <T extends LCUser> LCQuery<T> |
LCUser.getUserQuery(java.lang.Class<T> clazz) |
Get User Query
|
LCQuery<T> |
LCQuery.include(java.lang.String key) |
Include nested AVObjects for the provided key.
|
LCQuery<T> |
LCQuery.includeACL(boolean includeACL) |
set include ACL or not.
|
LCQuery<T> |
LCQuery.limit(int limit) |
|
static <T extends LCObject> LCQuery<T> |
LCQuery.or(java.util.List<LCQuery<T>> queries) |
Constructs a query that is the or of the given queries.
|
LCQuery<T> |
LCQuery.order(java.lang.String order) |
|
LCQuery<T> |
LCQuery.orderByAscending(java.lang.String key) |
Sorts the results in ascending order by the given key.
|
LCQuery<T> |
LCQuery.orderByDescending(java.lang.String key) |
Sorts the results in descending order by the given key.
|
static <M extends LCObject> LCQuery<M> |
LCRelation.reverseQuery(java.lang.Class<M> theParentClazz,
java.lang.String relationKey,
LCObject child) |
Create a query that can be used to query the parent objects in this relation.
|
static <M extends LCObject> LCQuery<M> |
LCRelation.reverseQuery(java.lang.String parentClassName,
java.lang.String relationKey,
LCObject child) |
Create a query that can be used to query the parent objects in this relation.
|
LCQuery<T> |
LCQuery.selectKeys(java.util.Collection<java.lang.String> keys) |
Restrict the fields of returned AVObjects to only include the provided keys.
|
LCQuery<T> |
LCQuery.setCachePolicy(LCQuery.CachePolicy cachePolicy) |
Change the caching policy of this query.
|
LCQuery<T> |
LCQuery.setClassName(java.lang.String className) |
Set class name
|
LCQuery<T> |
LCQuery.setLimit(int limit) |
Controls the maximum number of results that are returned.
|
LCQuery<T> |
LCQuery.setMaxCacheAge(long maxCacheAge) |
Sets the maximum age of cached data that will be considered in this query.
|
LCQuery<T> |
LCQuery.setOrder(java.lang.String order) |
Set query order fields.
|
LCQuery<T> |
LCQuery.setPolicy(LCQuery.CachePolicy policy) |
Change the caching policy of this query.
|
LCQuery<T> |
LCQuery.setSkip(int skip) |
Controls the number of results to skip before returning any results.
|
LCQuery<T> |
LCQuery.skip(int skip) |
|
LCQuery<T> |
LCQuery.whereContainedIn(java.lang.String key,
java.util.Collection<? extends java.lang.Object> values) |
Add a constraint to the query that requires a particular key's value to be contained in the
provided list of values.
|
LCQuery<T> |
LCQuery.whereContains(java.lang.String key,
java.lang.String substring) |
Add a constraint for finding string values that contain a provided string.
|
LCQuery<T> |
LCQuery.whereContainsAll(java.lang.String key,
java.util.Collection<?> values) |
Add a constraint to the query that requires a particular key's value match another AVQuery.
|
LCQuery<T> |
LCQuery.whereDoesNotExist(java.lang.String key) |
Add a constraint for finding objects that do not contain a given key.
|
LCQuery<T> |
LCQuery.whereDoesNotMatchKeyInQuery(java.lang.String key,
java.lang.String keyInQuery,
LCQuery<?> 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 AVQuery.
|
LCQuery<T> |
LCQuery.whereDoesNotMatchQuery(java.lang.String key,
LCQuery<?> query) |
Add a constraint to the query that requires a particular key's value does not match another
AVQuery.
|
LCQuery<T> |
LCQuery.whereEndsWith(java.lang.String key,
java.lang.String suffix) |
Add a constraint for finding string values that end with a provided string.
|
LCQuery<T> |
LCQuery.whereEqualTo(java.lang.String key,
java.lang.Object value) |
Add a constraint to the query that requires a particular key's value to be equal to the
provided value.
|
LCQuery<T> |
LCQuery.whereExists(java.lang.String key) |
Add a constraint for finding objects that contain the given key.
|
LCQuery<T> |
LCQuery.whereGreaterThan(java.lang.String key,
java.lang.Object value) |
Add a constraint to the query that requires a particular key's value to be greater than the
provided value.
w
|
LCQuery<T> |
LCQuery.whereGreaterThanOrEqualTo(java.lang.String key,
java.lang.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.
|
LCQuery<T> |
LCQuery.whereLessThan(java.lang.String key,
java.lang.Object value) |
Add a constraint to the query that requires a particular key's value to be less than the
provided value.
|
LCQuery<T> |
LCQuery.whereLessThanOrEqualTo(java.lang.String key,
java.lang.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.
|
LCQuery<T> |
LCQuery.whereMatches(java.lang.String key,
java.lang.String regex) |
Add a regular expression constraint for finding string values that match the provided regular
expression.
|
LCQuery<T> |
LCQuery.whereMatches(java.lang.String key,
java.lang.String regex,
java.lang.String modifiers) |
Add a regular expression constraint for finding string values that match the provided regular
expression.
|
LCQuery<T> |
LCQuery.whereMatchesKeyInQuery(java.lang.String key,
java.lang.String keyInQuery,
LCQuery<?> 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 AVQuery
|
LCQuery<T> |
LCQuery.whereMatchesQuery(java.lang.String key,
LCQuery<?> query) |
Add a constraint to the query that requires a particular key's value match another AVQuery.
|
LCQuery<T> |
LCQuery.whereNear(java.lang.String key,
LCGeoPoint point) |
Add a proximity based constraint for finding objects with key point values near the point
given.
|
LCQuery<T> |
LCQuery.whereNotContainedIn(java.lang.String key,
java.util.Collection<? extends java.lang.Object> values) |
Add a constraint to the query that requires a particular key's value not be contained in the
provided list of values.
|
LCQuery<T> |
LCQuery.whereNotEqualTo(java.lang.String key,
java.lang.Object value) |
Add a constraint to the query that requires a particular key's value to be not equal to the
provided value.
|
LCQuery<T> |
LCQuery.whereSizeEqual(java.lang.String key,
int size) |
添加查询约束条件,查找key类型是数组,该数组的长度匹配提供的数值。
|
LCQuery<T> |
LCQuery.whereStartsWith(java.lang.String key,
java.lang.String prefix) |
Add a constraint for finding string values that start with a provided string.
|
LCQuery<T> |
LCQuery.whereWithinGeoBox(java.lang.String key,
LCGeoPoint southwest,
LCGeoPoint northeast) |
Add a constraint to the query that requires a particular key's coordinates be contained within
a given rectangular geographic bounding box.
|
LCQuery<T> |
LCQuery.whereWithinKilometers(java.lang.String key,
LCGeoPoint 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.
|
LCQuery<T> |
LCQuery.whereWithinKilometers(java.lang.String key,
LCGeoPoint point,
double maxDistance,
double minDistance) |
Add a proximity based constraint for finding objects with key point values near the point given
and within the given ring area
Radius of earth used is 6371.0 kilometers.
|
LCQuery<T> |
LCQuery.whereWithinMiles(java.lang.String key,
LCGeoPoint 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.
|
LCQuery<T> |
LCQuery.whereWithinMiles(java.lang.String key,
LCGeoPoint point,
double maxDistance,
double minDistance) |
Add a proximity based constraint for finding objects with key point values near the point
given and within the given ring.
|
LCQuery<T> |
LCQuery.whereWithinRadians(java.lang.String key,
LCGeoPoint 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.
|
LCQuery<T> |
LCQuery.whereWithinRadians(java.lang.String key,
LCGeoPoint point,
double maxDistance,
double minDistance) |
Add a proximity based constraint for finding objects with key point values near the point given
and within the maximum distance given.
|