Package org.apache.lucene.queries.mlt
Class MoreLikeThisQuery
java.lang.Object
org.apache.lucene.search.Query
org.apache.lucene.queries.mlt.MoreLikeThisQuery
- All Implemented Interfaces:
Cloneable
A simple wrapper for MoreLikeThis for use in scenarios where a Query object is required eg
in custom QueryParser extensions. At query.rewrite() time the reader is used to construct the
actual MoreLikeThis object and obtain the real Query object.
-
Constructor Summary
ConstructorsConstructorDescriptionMoreLikeThisQuery(String likeText, String[] moreLikeFields, Analyzer analyzer, String fieldName) -
Method Summary
Modifier and TypeMethodDescriptionbooleanintintintString[]floatSet<?> inthashCode()rewrite(IndexReader reader) Expert: called to re-write queries into primitive queries.voidsetAnalyzer(Analyzer analyzer) voidsetLikeText(String likeText) voidsetMaxQueryTerms(int maxQueryTerms) voidsetMinDocFreq(int minDocFreq) voidsetMinTermFrequency(int minTermFrequency) voidsetMoreLikeFields(String[] moreLikeFields) voidsetPercentTermsToMatch(float percentTermsToMatch) voidsetStopWords(Set<?> stopWords) Prints a query to a string, withfieldassumed to be the default field and omitted.Methods inherited from class org.apache.lucene.search.Query
clone, createWeight, extractTerms, getBoost, setBoost, toString
-
Constructor Details
-
Method Details
-
rewrite
Description copied from class:QueryExpert: called to re-write queries into primitive queries. For example, a PrefixQuery will be rewritten into a BooleanQuery that consists of TermQuerys.- Overrides:
rewritein classQuery- Throws:
IOException
-
toString
Description copied from class:QueryPrints a query to a string, withfieldassumed to be the default field and omitted. -
getPercentTermsToMatch
public float getPercentTermsToMatch() -
setPercentTermsToMatch
public void setPercentTermsToMatch(float percentTermsToMatch) -
getAnalyzer
-
setAnalyzer
-
getLikeText
-
setLikeText
-
getMaxQueryTerms
public int getMaxQueryTerms() -
setMaxQueryTerms
public void setMaxQueryTerms(int maxQueryTerms) -
getMinTermFrequency
public int getMinTermFrequency() -
setMinTermFrequency
public void setMinTermFrequency(int minTermFrequency) -
getMoreLikeFields
-
setMoreLikeFields
-
getStopWords
-
setStopWords
-
getMinDocFreq
public int getMinDocFreq() -
setMinDocFreq
public void setMinDocFreq(int minDocFreq) -
hashCode
public int hashCode() -
equals
-