Class BaseConstantScoreQueryMapper<T extends SearchQuery>
- java.lang.Object
- 
- com.atlassian.confluence.impl.search.v2.mappers.BaseConstantScoreQueryMapper<T>
 
- 
- All Implemented Interfaces:
- LuceneQueryMapper<T>
 - Direct Known Subclasses:
- AbstractUserQueryMapper
 
 public abstract class BaseConstantScoreQueryMapper<T extends SearchQuery> extends Object implements LuceneQueryMapper<T> A base LuceneQueryMapper class that produces ConstantScoreQuery, removing any effect of the query from the lucene scoring, this is equivalent of using a LuceneFilter.
- 
- 
Constructor SummaryConstructors Constructor Description BaseConstantScoreQueryMapper()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description org.apache.lucene.search.QueryconvertToLuceneQuery(T searchQuery)Convert a SearchQuery into a lucene query.protected abstract org.apache.lucene.search.QueryinternalConvertToLuceneQuery(T query)
 
- 
- 
- 
Method Detail- 
internalConvertToLuceneQueryprotected abstract org.apache.lucene.search.Query internalConvertToLuceneQuery(T query) 
 - 
convertToLuceneQuerypublic org.apache.lucene.search.Query convertToLuceneQuery(T searchQuery) Description copied from interface:LuceneQueryMapperConvert 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:
- convertToLuceneQueryin interface- LuceneQueryMapper<T extends 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.
 
 
- 
 
-