Uses of Class
org.elasticsearch.index.query.MoreLikeThisQueryBuilder

Packages that use MoreLikeThisQueryBuilder
org.elasticsearch.index.query   
 

Uses of MoreLikeThisQueryBuilder in org.elasticsearch.index.query
 

Methods in org.elasticsearch.index.query that return MoreLikeThisQueryBuilder
 MoreLikeThisQueryBuilder MoreLikeThisQueryBuilder.analyzer(String analyzer)
          The analyzer that will be used to analyze the text.
 MoreLikeThisQueryBuilder MoreLikeThisQueryBuilder.boost(float boost)
           
 MoreLikeThisQueryBuilder MoreLikeThisQueryBuilder.boostTerms(float boostTerms)
          Sets the boost factor to use when boosting terms.
 MoreLikeThisQueryBuilder MoreLikeThisQueryBuilder.likeText(String likeText)
          The text to use in order to find documents that are "like" this.
 MoreLikeThisQueryBuilder MoreLikeThisQueryBuilder.maxDocFreq(int maxDocFreq)
          Set the maximum frequency in which words may still appear.
 MoreLikeThisQueryBuilder MoreLikeThisQueryBuilder.maxQueryTerms(int maxQueryTerms)
          Sets the maximum number of query terms that will be included in any generated query.
 MoreLikeThisQueryBuilder MoreLikeThisQueryBuilder.maxWordLen(int maxWordLen)
          Sets the maximum word length above which words will be ignored.
 MoreLikeThisQueryBuilder MoreLikeThisQueryBuilder.minDocFreq(int minDocFreq)
          Sets the frequency at which words will be ignored which do not occur in at least this many docs.
 MoreLikeThisQueryBuilder MoreLikeThisQueryBuilder.minTermFreq(int minTermFreq)
          The frequency below which terms will be ignored in the source doc.
 MoreLikeThisQueryBuilder MoreLikeThisQueryBuilder.minWordLen(int minWordLen)
          Sets the minimum word length below which words will be ignored.
static MoreLikeThisQueryBuilder QueryBuilders.moreLikeThisQuery()
          A more like this query that finds documents that are "like" the provided likeText(String) which is checked against the "_all" field.
static MoreLikeThisQueryBuilder QueryBuilders.moreLikeThisQuery(String... fields)
          A more like this query that finds documents that are "like" the provided likeText(String) which is checked against the fields the query is constructed with.
 MoreLikeThisQueryBuilder MoreLikeThisQueryBuilder.percentTermsToMatch(float percentTermsToMatch)
          The percentage of terms to match.
 MoreLikeThisQueryBuilder MoreLikeThisQueryBuilder.stopWords(String... stopWords)
          Set the set of stopwords.
 



Copyright © 2009-2012. All Rights Reserved.