Class TermQueryMapper
java.lang.Object
com.atlassian.confluence.impl.search.v2.mappers.TermQueryMapper
- All Implemented Interfaces:
LuceneQueryMapper<TermQuery>
- Since:
- 5.9
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.lucene.search.Query
convertToLuceneQuery
(TermQuery query) Convert a SearchQuery into a lucene query.
-
Constructor Details
-
TermQueryMapper
public TermQueryMapper()
-
-
Method Details
-
convertToLuceneQuery
Description copied from interface:LuceneQueryMapper
Convert a SearchQuery into a lucene query. So a query that represents a search for any value in a particular index field should map to null.- Specified by:
convertToLuceneQuery
in interfaceLuceneQueryMapper<TermQuery>
- Parameters:
query
- the query to convert- Returns:
- the lucene query corresponding to the search query. null can be returned and signifies that no mapped query is necessary for the mapped query.
-