public abstract class EntityQuery<T> extends Object implements Query<T>
Modifier and Type | Field and Description |
---|---|
static int |
ALL_RESULTS
Flag to indicate that an EntityQuery should retrieve all results.
|
static int |
MAX_MAX_RESULTS
This is the recommended maximum number of 'max' results the system will allow you to return.
|
Constructor and Description |
---|
EntityQuery(Class<T> returnType,
EntityDescriptor entityDescriptor,
SearchRestriction searchRestriction,
int startIndex,
int maxResults) |
EntityQuery(EntityQuery<T> query,
int startIndex,
int maxResults) |
EntityQuery(EntityQuery query,
Class<T> returnType) |
Modifier and Type | Method and Description |
---|---|
static int |
addToMaxResults(int maxResults,
int add)
Simple utility method that increases or decreases the result limit and deals with
ALL_RESULTS and
prevents negative values. |
static long |
allResultsToLongMax(int maxResults)
Converts max results limit to long value - replaces
ALL_RESULTS with Long.MAX_VALUE }. |
boolean |
equals(Object o) |
EntityDescriptor |
getEntityDescriptor() |
int |
getMaxResults()
The maximum number of elements to return.
|
Class<T> |
getReturnType()
The type of elements to return.
|
SearchRestriction |
getSearchRestriction()
Restrictions to apply to the query.
|
int |
getStartIndex()
The index of the first element to return.
|
int |
hashCode() |
String |
toString() |
public static final int MAX_MAX_RESULTS
public static final int ALL_RESULTS
WARNING: using this flag could retrieve thousands or millions of entities. Misuse can cause massive performance problems. This flag should only ever be used in exceptional circumstances.
If you need to find "all" entities, then consider making multiple successive calls to Crowd to receive partial results. That way, the entire result set is never stored in memory on the Crowd server at any one time.
public EntityQuery(Class<T> returnType, EntityDescriptor entityDescriptor, SearchRestriction searchRestriction, int startIndex, int maxResults)
public EntityQuery(EntityQuery query, Class<T> returnType)
public EntityQuery(EntityQuery<T> query, int startIndex, int maxResults)
public EntityDescriptor getEntityDescriptor()
public SearchRestriction getSearchRestriction()
Query
getSearchRestriction
in interface Query<T>
public int getStartIndex()
Query
getStartIndex
in interface Query<T>
public int getMaxResults()
Query
getMaxResults
in interface Query<T>
public Class<T> getReturnType()
Query
getReturnType
in interface Query<T>
public static int addToMaxResults(int maxResults, int add)
ALL_RESULTS
and
prevents negative values.public static long allResultsToLongMax(int maxResults)
ALL_RESULTS
with Long.MAX_VALUE
}.Copyright © 2019 Atlassian. All rights reserved.