Package com.atlassian.jira.jql.values
Class IssueTypeClauseValuesGenerator
java.lang.Object
com.atlassian.jira.jql.values.AbstractIssueConstantValuesGenerator
com.atlassian.jira.jql.values.IssueTypeClauseValuesGenerator
- All Implemented Interfaces:
ClauseValuesGenerator
Will get all values for issue types.
- Since:
- v4.0
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.atlassian.jira.jql.values.ClauseValuesGenerator
ClauseValuesGenerator.Result, ClauseValuesGenerator.Results -
Constructor Summary
ConstructorsConstructorDescriptionIssueTypeClauseValuesGenerator(ConstantsManager constantsManager, TerminologyJqlAutocompleteAliasProvider terminologyAliasProvider) -
Method Summary
Modifier and TypeMethodDescriptionprotected List<IssueConstant>getPossibleValues(ApplicationUser searcher, String jqlClauseName, String valuePrefix, int maxNumResults) Will return a string representation of only the possible values that match the value prefix for this clause.Methods inherited from class com.atlassian.jira.jql.values.AbstractIssueConstantValuesGenerator
getAllConstantNames
-
Constructor Details
-
IssueTypeClauseValuesGenerator
public IssueTypeClauseValuesGenerator(ConstantsManager constantsManager, TerminologyJqlAutocompleteAliasProvider terminologyAliasProvider)
-
-
Method Details
-
getPossibleValues
public ClauseValuesGenerator.Results getPossibleValues(ApplicationUser searcher, String jqlClauseName, String valuePrefix, int maxNumResults) Description copied from interface:ClauseValuesGeneratorWill return a string representation of only the possible values that match the value prefix for this clause. This should not return more results than specified in maxNumResults. If it is possible this should use the maxNumResults to efficiently generate the results.The contract of this method is that if the valuePrefix exactly (minus case) matches the suggestion then we suggest it. This will allow users to verify in their own minds that even though they have typed the full value, it is still valid.
- Specified by:
getPossibleValuesin interfaceClauseValuesGenerator- Overrides:
getPossibleValuesin classAbstractIssueConstantValuesGenerator- Parameters:
searcher- the user preforming the search.jqlClauseName- the jql clause name that was entered by the user, represents the identifier that was used to find this values generator. Note: for custom fields this can be used to identify the custom field we are dealing with.valuePrefix- the portion of the value that has already been provided by the user.maxNumResults- the maximun number of results to return.- Returns:
- a string value of the clause values that match the provided value prefix, empty list if none match.
-
getAllConstants
- Specified by:
getAllConstantsin classAbstractIssueConstantValuesGenerator- Returns:
- a modifiable list of all the constants
-