|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Query in com.atlassian.jira.bc.issue.search |
---|
Methods in com.atlassian.jira.bc.issue.search that return Query | |
---|---|
Query |
SearchService.ParseResult.getQuery()
|
Query |
SearchService.sanitiseSearchQuery(com.atlassian.crowd.embedded.api.User searcher,
Query query)
Returns an equivalent Query with all the potential "information leaks" removed,
with regards to the specified user. |
Methods in com.atlassian.jira.bc.issue.search with parameters of type Query | |
---|---|
boolean |
SearchService.doesQueryFitFilterForm(com.atlassian.crowd.embedded.api.User user,
Query query)
Checks if a Query is capable of being shown on the simple (GUI-based) issue navigator edit screen. |
String |
SearchService.getGeneratedJqlString(Query query)
Generates a JQL string representation for the passed query. |
String |
SearchService.getJqlString(Query query)
Gets the JQL string representation for the passed query. |
QueryContext |
SearchService.getQueryContext(com.atlassian.crowd.embedded.api.User searcher,
Query query)
Generates a full QueryContext for the specified Query for the searching user. |
String |
SearchService.getQueryString(com.atlassian.crowd.embedded.api.User user,
Query query)
Returns the query string to represent the specified SearchQuery. |
SearchContext |
SearchService.getSearchContext(com.atlassian.crowd.embedded.api.User searcher,
Query query)
This produces an old-style SearchContext based on the passed in
search query and the user that is performing the search. |
QueryContext |
SearchService.getSimpleQueryContext(com.atlassian.crowd.embedded.api.User searcher,
Query query)
Generates a simple QueryContext for the specified Query for the searching user. |
Query |
SearchService.sanitiseSearchQuery(com.atlassian.crowd.embedded.api.User searcher,
Query query)
Returns an equivalent Query with all the potential "information leaks" removed,
with regards to the specified user. |
SearchResults |
SearchService.search(com.atlassian.crowd.embedded.api.User searcher,
Query query,
PagerFilter pager)
Search the index, and only return issues that are in the pager's range. |
long |
SearchService.searchCount(com.atlassian.crowd.embedded.api.User searcher,
Query query)
Search the index, and return the count of the issues matching the query. |
MessageSet |
SearchService.validateQuery(com.atlassian.crowd.embedded.api.User searcher,
Query query)
Validates the specified Query for the searching user. |
Constructors in com.atlassian.jira.bc.issue.search with parameters of type Query | |
---|---|
SearchService.ParseResult(Query query,
MessageSet errors)
|
Uses of Query in com.atlassian.jira.issue.customfields.searchers.renderer |
---|
Methods in com.atlassian.jira.issue.customfields.searchers.renderer with parameters of type Query | |
---|---|
boolean |
CustomFieldRenderer.isRelevantForQuery(com.atlassian.crowd.embedded.api.User user,
Query query)
|
Uses of Query in com.atlassian.jira.issue.customfields.searchers.transformer |
---|
Methods in com.atlassian.jira.issue.customfields.searchers.transformer with parameters of type Query | |
---|---|
boolean |
FreeTextCustomFieldSearchInputTransformer.doRelevantClausesFitFilterForm(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
|
boolean |
VersionCustomFieldSearchInputTransformer.doRelevantClausesFitFilterForm(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
|
boolean |
NumberRangeCustomFieldSearchInputTransformer.doRelevantClausesFitFilterForm(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
|
boolean |
ExactTextCustomFieldSearchInputTransformer.doRelevantClausesFitFilterForm(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
|
boolean |
UserPickerCustomFieldSearchInputTransformer.doRelevantClausesFitFilterForm(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
|
boolean |
ExactNumberCustomFieldSearchInputTransformer.doRelevantClausesFitFilterForm(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
|
protected CustomFieldParams |
VersionCustomFieldSearchInputTransformer.getParamsFromSearchRequest(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
|
protected CustomFieldParams |
NumberRangeCustomFieldSearchInputTransformer.getParamsFromSearchRequest(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
|
protected CustomFieldParams |
UserPickerCustomFieldSearchInputTransformer.getParamsFromSearchRequest(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
|
protected CustomFieldParams |
AbstractSingleValueCustomFieldSearchInputTransformer.getParamsFromSearchRequest(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
|
protected abstract CustomFieldParams |
AbstractCustomFieldSearchInputTransformer.getParamsFromSearchRequest(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
Gets CustomField search parameters from the given JQL Query. |
List<TerminalClause> |
NumberRangeCustomFieldInputHelper.getValuesFromQuery(Query query)
Returns a list of the valid for navigator TerminalClause s in the Query . |
void |
AbstractCustomFieldSearchInputTransformer.populateFromQuery(com.atlassian.crowd.embedded.api.User user,
FieldValuesHolder fieldValuesHolder,
Query query,
SearchContext searchContext)
|
Uses of Query in com.atlassian.jira.issue.search |
---|
Fields in com.atlassian.jira.issue.search declared as Query | |
---|---|
Query |
SearchRequestInfo.query
|
Methods in com.atlassian.jira.issue.search that return Query | |
---|---|
Query |
SearchRequest.getQuery()
Gets the SearchQuery that defines the search that will be performed for this SearchRequest. |
Query |
SearchRequestInfo.getQuery()
|
Methods in com.atlassian.jira.issue.search with parameters of type Query | |
---|---|
void |
SearchProvider.search(Query query,
ApplicationUser searcher,
org.apache.lucene.search.Collector collector)
Run a search based on the provided search criteria and, for each match, call Collector.collect(). |
void |
SearchProvider.search(Query query,
ApplicationUser searcher,
org.apache.lucene.search.Collector collector,
org.apache.lucene.search.Query andQuery)
Run a search based on the provided search criteria and, for each match, call Collector.collect(). |
SearchResults |
SearchProvider.search(Query query,
ApplicationUser searcher,
PagerFilter pager)
Search the index, and only return issues that are in the pager's range. |
SearchResults |
SearchProvider.search(Query query,
ApplicationUser searcher,
PagerFilter pager,
org.apache.lucene.search.Query andQuery)
Search the index, and only return issues that are in the pager's range while AND'ing the raw lucene query to the generated query from the provided searchQuery. |
void |
SearchProvider.search(Query query,
com.atlassian.crowd.embedded.api.User searcher,
org.apache.lucene.search.Collector collector)
Run a search based on the provided search criteria and, for each match, call Collector.collect(). |
void |
SearchProvider.search(Query query,
com.atlassian.crowd.embedded.api.User searcher,
org.apache.lucene.search.Collector collector,
org.apache.lucene.search.Query andQuery)
Run a search based on the provided search criteria and, for each match, call Collector.collect(). |
SearchResults |
SearchProvider.search(Query query,
com.atlassian.crowd.embedded.api.User searcher,
PagerFilter pager)
Search the index, and only return issues that are in the pager's range. |
SearchResults |
SearchProvider.search(Query query,
com.atlassian.crowd.embedded.api.User searcher,
PagerFilter pager,
org.apache.lucene.search.Query andQuery)
Search the index, and only return issues that are in the pager's range while AND'ing the raw lucene query to the generated query from the provided searchQuery. |
void |
SearchProvider.searchAndSort(Query query,
ApplicationUser searcher,
org.apache.lucene.search.Collector collector,
PagerFilter pager)
Run a search based on the provided search criteria and, for each match call Collector.collect(). |
void |
SearchProvider.searchAndSort(Query query,
com.atlassian.crowd.embedded.api.User searcher,
org.apache.lucene.search.Collector collector,
PagerFilter pager)
Run a search based on the provided search criteria and, for each match call Collector.collect(). |
void |
SearchProvider.searchAndSortOverrideSecurity(Query query,
ApplicationUser searcher,
org.apache.lucene.search.Collector collector,
PagerFilter pager)
Run a search based on the provided search criteria and, for each match call Collector.collect(). |
void |
SearchProvider.searchAndSortOverrideSecurity(Query query,
com.atlassian.crowd.embedded.api.User searcher,
org.apache.lucene.search.Collector collector,
PagerFilter pager)
Run a search based on the provided search criteria and, for each match call Collector.collect(). |
long |
SearchProvider.searchCount(Query query,
ApplicationUser searcher)
Return the number of issues matching the provided search criteria. |
long |
SearchProvider.searchCount(Query query,
com.atlassian.crowd.embedded.api.User searcher)
Return the number of issues matching the provided search criteria. |
long |
SearchProvider.searchCountOverrideSecurity(Query query,
ApplicationUser searcher)
Return the number of issues matching the provided search criteria, overridding any security constraints. |
long |
SearchProvider.searchCountOverrideSecurity(Query query,
com.atlassian.crowd.embedded.api.User searcher)
Return the number of issues matching the provided search criteria, overridding any security constraints. |
void |
SearchProvider.searchOverrideSecurity(Query query,
ApplicationUser searcher,
org.apache.lucene.search.Collector collector)
Run a search based on the provided search criteria and, for each match, call Collector.collect() not taking into account any security constraints. |
SearchResults |
SearchProvider.searchOverrideSecurity(Query query,
ApplicationUser searcher,
PagerFilter pager,
org.apache.lucene.search.Query andQuery)
Search the index, and only return issues that are in the pager's range while AND'ing the raw lucene query to the generated query from the provided searchQuery, not taking into account any security constraints. |
void |
SearchProvider.searchOverrideSecurity(Query query,
com.atlassian.crowd.embedded.api.User searcher,
org.apache.lucene.search.Collector collector)
Run a search based on the provided search criteria and, for each match, call Collector.collect() not taking into account any security constraints. |
SearchResults |
SearchProvider.searchOverrideSecurity(Query query,
com.atlassian.crowd.embedded.api.User searcher,
PagerFilter pager,
org.apache.lucene.search.Query andQuery)
Search the index, and only return issues that are in the pager's range while AND'ing the raw lucene query to the generated query from the provided searchQuery, not taking into account any security constraints. |
void |
SearchRequest.setQuery(Query query)
|
Constructors in com.atlassian.jira.issue.search with parameters of type Query | |
---|---|
SearchRequest(Query query)
Creates a SearchRequest with the specified Query and no other attributes. |
|
SearchRequest(Query query,
ApplicationUser owner,
String name,
String description)
Build a SearchRequest with the provided attributes, this can be used if you want to create a SearchRequest that can be persisted. |
|
SearchRequest(Query query,
ApplicationUser owner,
String name,
String description,
Long id,
long favouriteCount)
Build a SearchRequest with the provided attributes. |
|
SearchRequest(Query query,
String ownerUserName,
String name,
String description)
Deprecated. Use SearchRequest.SearchRequest(com.atlassian.query.Query, com.atlassian.jira.user.ApplicationUser, String, String) instead. Since v6.0.
Build a SearchRequest with the provided attributes, this can be used if you want to create a SearchRequest that
can be persisted. |
|
SearchRequest(Query query,
String ownerUserName,
String name,
String description,
Long id,
long favouriteCount)
Deprecated. Use SearchRequest.SearchRequest(com.atlassian.query.Query, com.atlassian.jira.user.ApplicationUser, String, String, Long, long) instead. Since v6.0.
Build a SearchRequest with the provided attributes. |
|
SearchRequestInfo(Query query,
Long id,
boolean modified)
|
Uses of Query in com.atlassian.jira.issue.search.searchers.renderer |
---|
Methods in com.atlassian.jira.issue.search.searchers.renderer with parameters of type Query | |
---|---|
protected boolean |
AbstractSearchRenderer.isRelevantForQuery(ClauseNames clauseNames,
Query query)
|
boolean |
SearchRenderer.isRelevantForQuery(com.atlassian.crowd.embedded.api.User user,
Query query)
Checks if the searchRequest object has a search representation that was created by the searcher and is used to determine if the SearchRenderer.getViewHtml(User, com.atlassian.jira.issue.search.SearchContext, com.atlassian.jira.issue.transport.FieldValuesHolder, java.util.Map, webwork.action.Action)
method should be called when rendering the search summary. |
boolean |
AbstractDateSearchRenderer.isRelevantForQuery(com.atlassian.crowd.embedded.api.User user,
Query query)
|
Uses of Query in com.atlassian.jira.issue.search.searchers.transformer |
---|
Methods in com.atlassian.jira.issue.search.searchers.transformer with parameters of type Query | |
---|---|
boolean |
NavigatorStructureChecker.checkSearchRequest(Query query,
SearchContext searchContext)
Checks that a SearchRequest 's query conforms to the simple structure required to fit in the Issue
Navigator. |
boolean |
SearchInputTransformer.doRelevantClausesFitFilterForm(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
Tells the caller whether or not the relevant clauses from the passed query can be represented on the issue navigator. |
boolean |
RelativeDateSearcherInputTransformer.doRelevantClausesFitFilterForm(com.atlassian.crowd.embedded.api.User user,
Query query,
SearchContext searchContext)
|
void |
SearchInputTransformer.populateFromQuery(com.atlassian.crowd.embedded.api.User user,
FieldValuesHolder fieldValuesHolder,
Query query,
SearchContext searchContext)
This method transforms any query information contained in the query that is relevant to this SearchInputTransformer into the values that the HTML rendering expects. |
void |
RelativeDateSearcherInputTransformer.populateFromQuery(com.atlassian.crowd.embedded.api.User user,
FieldValuesHolder fieldValuesHolder,
Query query,
SearchContext searchContext)
|
Uses of Query in com.atlassian.jira.issue.search.searchers.util |
---|
Methods in com.atlassian.jira.issue.search.searchers.util with parameters of type Query | |
---|---|
Set<String> |
IndexedInputHelper.getAllIndexValuesForMatchingClauses(com.atlassian.crowd.embedded.api.User searcher,
ClauseNames jqlClauseNames,
Query query,
SearchContext searchContext)
Retrieves the index values for the clauses in the SearchRequest . |
Set<String> |
DefaultIndexedInputHelper.getAllIndexValuesForMatchingClauses(com.atlassian.crowd.embedded.api.User searcher,
ClauseNames jqlClauseNames,
Query query,
SearchContext searchContext)
|
Set<String> |
IndexedInputHelper.getAllNavigatorValuesForMatchingClauses(com.atlassian.crowd.embedded.api.User searcher,
ClauseNames jqlClauseNames,
Query query,
SearchContext searchContext)
Retreives the navigator id values for the values in the clauses. |
Set<String> |
DefaultIndexedInputHelper.getAllNavigatorValuesForMatchingClauses(com.atlassian.crowd.embedded.api.User searcher,
ClauseNames jqlClauseNames,
Query query,
SearchContext searchContext)
|
Uses of Query in com.atlassian.jira.issue.search.util |
---|
Methods in com.atlassian.jira.issue.search.util with parameters of type Query | |
---|---|
List<SearchSort> |
SearchSortUtil.getSearchSorts(Query query)
|
Uses of Query in com.atlassian.jira.jql.builder |
---|
Methods in com.atlassian.jira.jql.builder that return Query | |
---|---|
Query |
JqlClauseBuilder.buildQuery()
Call this method to build a Query using the current builder. |
Query |
JqlQueryBuilder.buildQuery()
This will find the root of the clause tree and build a Query whos where clause will
return the generated clause and Order By clause will return the generated search order. |
Query |
JqlOrderByBuilder.buildQuery()
Call this method to build a Query using the current builder. |
Methods in com.atlassian.jira.jql.builder with parameters of type Query | |
---|---|
static JqlQueryBuilder |
JqlQueryBuilder.newBuilder(Query existingQuery)
Creates a new builder that clones the state of the passed in query so that you can use the resulting builder to create a slightly modified query. |
static JqlClauseBuilder |
JqlQueryBuilder.newClauseBuilder(Query query)
Build a new JqlClauseBuilder and initialise it with the clause from the
passed query. |
static JqlOrderByBuilder |
JqlQueryBuilder.newOrderByBuilder(Query query)
Build a new JqlOrderByBuilder and initialise it with the order from the passed query. |
Uses of Query in com.atlassian.jira.jql.parser |
---|
Methods in com.atlassian.jira.jql.parser that return Query | |
---|---|
Query |
JqlQueryParser.parseQuery(String jqlQuery)
Parse the passed JQL string into its SearchQuery representation. |
Uses of Query in com.atlassian.jira.jql.util |
---|
Methods in com.atlassian.jira.jql.util with parameters of type Query | |
---|---|
String |
JqlStringSupport.generateJqlString(Query query)
Generates a JQL string representation for the passed query. |
Uses of Query in com.atlassian.jira.project.browse |
---|
Methods in com.atlassian.jira.project.browse that return Query | |
---|---|
Query |
BrowseContext.createQuery()
Creates a new Query that narrows it down to the current search context. |
Uses of Query in com.atlassian.jira.web.action.issue |
---|
Methods in com.atlassian.jira.web.action.issue with parameters of type Query | |
---|---|
SearchResultsInfo |
IssueNavigatorSearchResultsHelper.getSearchResults(Query query,
boolean isPageChanged)
|
Uses of Query in com.atlassian.query |
---|
Classes in com.atlassian.query that implement Query | |
---|---|
class |
QueryImpl
Defines a structured graph of objects that can be used to represent query. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |