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 SummaryNested classes/interfaces inherited from interface com.atlassian.jira.entity.property.EntityPropertyQueryEntityPropertyQuery.ExecutableQuery
- 
Method SummaryModifier 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.EntityPropertyQueryentityId, entityName, key, keyPrefix, maxResults, offset
- 
Method Details- 
findDistinctKeysProduces a list of entity property keys that satisfy this query.- Returns:
- the list of distinct matching keys, sorted in ascending alphabetical order
- See Also:
 
- 
findKeysProduces a list of entity property keys that satisfy this query.- Returns:
- the list of matching keys, sorted in ascending alphabetical order.
- See Also:
 
- 
findProduces 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:
 
- 
findProduces a call to the provided visitor for each entity property that satisfies this query.- Parameters:
- visitor- the visitor to- visitfor each matching entity property
- See Also:
 
- 
countlong count()Counts the number of properties that match the given query.- Returns:
- the count of matching entity properties
 
- 
deletevoid delete()Deletes all the properties that match this query.
 
-