Interface EntityPropertyQuery.ExecutableQuery
- All Superinterfaces:
EntityPropertyQuery<EntityPropertyQuery.ExecutableQuery>
- Enclosing interface:
- EntityPropertyQuery<T extends EntityPropertyQuery<T>>
public static interface EntityPropertyQuery.ExecutableQuery
extends EntityPropertyQuery<EntityPropertyQuery.ExecutableQuery>
An
EntityPropertyQuery for which sufficient contraints have been provided to make
the query valid.-
Nested Class Summary
Nested classes/interfaces inherited from interface com.atlassian.jira.entity.property.EntityPropertyQuery
EntityPropertyQuery.ExecutableQuery -
Method Summary
Modifier and TypeMethodDescriptionlongcount()Counts the number of properties that match the given query.voiddelete()Deletes all the properties that match this query.find()Produces a list of entity properties that satisfy this query.voidfind(Visitor<EntityProperty> visitor) Produces a call to the provided visitor for each entity property that satisfies this query.Produces a list of entity property keys that satisfy this query.findKeys()Produces a list of entity property keys that satisfy this query.Methods inherited from interface com.atlassian.jira.entity.property.EntityPropertyQuery
entityId, entityName, key, keyPrefix, maxResults, offset
-
Method Details
-
findDistinctKeys
Produces a list of entity property keys that satisfy this query.- Returns:
- the list of distinct matching keys, sorted in ascending alphabetical order
- See Also:
-
findKeys
Produces a list of entity property keys that satisfy this query.- Returns:
- the list of matching keys, sorted in ascending alphabetical order.
- See Also:
-
find
Produces a list of entity properties that satisfy this query.- Returns:
- a list containing all of the results that were found, sorted by the key;
never
null - See Also:
-
find
Produces a call to the provided visitor for each entity property that satisfies this query.- Parameters:
visitor- the visitor tovisitfor each matching entity property- See Also:
-
count
long count()Counts the number of properties that match the given query.- Returns:
- the count of matching entity properties
-
delete
void delete()Deletes all the properties that match this query.
-