Class MatchNoDocsQueryMapper
- java.lang.Object
-
- com.atlassian.confluence.impl.search.v2.mappers.MatchNoDocsQueryMapper
-
- All Implemented Interfaces:
LuceneQueryMapper<SearchQuery>
@Internal public class MatchNoDocsQueryMapper extends Object implements LuceneQueryMapper<SearchQuery>
-
-
Constructor Summary
Constructors Constructor Description MatchNoDocsQueryMapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.lucene.search.Query
convertToLuceneQuery(SearchQuery searchQuery)
Convert a SearchQuery into a lucene query.
-
-
-
Method Detail
-
convertToLuceneQuery
public org.apache.lucene.search.Query convertToLuceneQuery(SearchQuery searchQuery)
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<SearchQuery>
- Parameters:
searchQuery
- 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.
-
-