Interface IndexedInputHelper
- All Known Implementing Classes:
- DefaultIndexedInputHelper,- IssueConstantIndexedInputHelper,- VersionIndexedInputHelper
public interface IndexedInputHelper
Provides methods for retreiving the Navigator or index representations of the values in a query clause, be they
 index values, functions or string values.
 
NOTE: this method will give back the values it finds in the named clauses and does not take into account the affects of the surrounding logical search query (i.e. AND, NOT, OR clauses that the clause may be contained in).
- Since:
- v4.0
- 
Method SummaryModifier and TypeMethodDescriptiongetAllIndexValuesForMatchingClauses(ApplicationUser searcher, ClauseNames jqlClauseNames, Query query) Retrieves the index values for the clauses in theSearchRequest.getAllNavigatorValuesForMatchingClauses(ApplicationUser searcher, ClauseNames jqlClauseNames, Query query) Retreives the navigator id values for the values in the clauses.getClauseForNavigatorValues(String jqlClauseName, Set<String> values) Converts a set of Navigator value strings into a Clause that will match at least one of the specified values for the given field.
- 
Method Details- 
getAllIndexValuesForMatchingClausesSet<String> getAllIndexValuesForMatchingClauses(ApplicationUser searcher, ClauseNames jqlClauseNames, Query query) Retrieves the index values for the clauses in theSearchRequest. Function Operands are expanded to their values.- Parameters:
- searcher- the user running the search
- jqlClauseNames- the names of the clauses on which to retreive the values.
- query- the search criteria used to populate the field values holder.
- Returns:
- a set of strings containing the index values of the clause values. Never null.
 
 
-