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) |
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()
getSearchRestriction in interface Query<T>public int getStartIndex()
getStartIndex in interface Query<T>public int getMaxResults()
getMaxResults in interface Query<T>public Class<T> getReturnType()
getReturnType in interface Query<T>public static int addToMaxResults(int maxResults,
int add)
ALL_RESULTS,
overflow and prevents negative values.public static long allResultsToLongMax(int maxResults)
ALL_RESULTS with Long.MAX_VALUE}.public <Q> EntityQuery<Q> withReturnType(Class<Q> returnType)
public EntityQuery<T> withStartIndex(int startIndex)
public EntityQuery<T> withMaxResults(int maxResults)
public EntityQuery<T> withStartIndexAndMaxResults(int startIndex, int maxResults)
public EntityQuery<T> withSearchRestriction(SearchRestriction searchRestriction)
public EntityQuery<T> baseSplitQuery()
public Optional<List<EntityQuery<T>>> splitOrRestrictionIfNeeded(int maxSize)
maxSize.
Only top level condition split is supported. Note that the start index and max conditions are adjusted.Optional#empty otherwisepublic EntityQuery<T> withAllResults()
public EntityQuery<T> addToMaxResults(int add)
public boolean hasAllResults()
Copyright © 2023 Atlassian. All rights reserved.