Class BoostQuery
- java.lang.Object
- 
- com.lucidworks.search.dsl.DslBase
- 
- com.lucidworks.search.dsl.request.DslCloneable
- 
- com.lucidworks.search.dsl.request.query.Query
- 
- com.lucidworks.search.dsl.request.query.BoostQuery
 
 
 
 
- 
 public class BoostQuery extends Query A boost query. BoostsgetQuery()
- 
- 
Field SummaryFields Modifier and Type Field Description static java.lang.StringTYPE
 - 
Constructor SummaryConstructors Constructor Description BoostQuery(Query boostedQuery, java.lang.Double boost)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description BoostQueryclone()java.lang.DoublegetBoost()java.util.List<Query>getChildQueries()Returns all the children of the query in question.QuerygetQuery()booleanisEmptyQuery()booleanremoveChildQuery(Query toRemove)Remove 'toRemove', if 'toRemove' is currently a child of this Query object.booleanreplaceChildQuery(Query toReplace, Query replacement)Swap 'replacement' in as a replacement, if 'toReplace' is currently a child of this Query object.voidsetBoost(double boost)- 
Methods inherited from class com.lucidworks.search.dsl.request.DslCloneableclone, deepClone
 
- 
 
- 
- 
- 
Field Detail- 
TYPEpublic static final java.lang.String TYPE - See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
BoostQuerypublic BoostQuery(Query boostedQuery, java.lang.Double boost) 
 
- 
 - 
Method Detail- 
getQuerypublic Query getQuery() - Returns:
- a query to be boosted
 
 - 
getBoostpublic java.lang.Double getBoost() - Returns:
- a boost value
 
 - 
setBoostpublic void setBoost(double boost) 
 - 
getChildQueriespublic java.util.List<Query> getChildQueries() Description copied from class:QueryReturns all the children of the query in question. The returnedListis provided as a copy - changes made to it do not impact the originating Query object in any way.- Specified by:
- getChildQueriesin class- Query
 
 - 
replaceChildQuerypublic boolean replaceChildQuery(Query toReplace, Query replacement) Description copied from class:QuerySwap 'replacement' in as a replacement, if 'toReplace' is currently a child of this Query object. Because a tree of Query objects might conceivably have repeated clauses, this method is implemented to test 'toReplace' using reference-equality instead of value-equality.- Specified by:
- replaceChildQueryin class- Query
- Returns:
- true if a replacement was made, false otherwise.
 
 - 
removeChildQuerypublic boolean removeChildQuery(Query toRemove) Description copied from class:QueryRemove 'toRemove', if 'toRemove' is currently a child of this Query object. Because a tree of Query objects might conceivably have repeated clauses, this method is implemented to test 'toRemove' using reference-equality instead of value-equality.- Specified by:
- removeChildQueryin class- Query
- Returns:
- true if a removal was made, false otherwise.
 
 - 
isEmptyQuerypublic boolean isEmptyQuery() - Specified by:
- isEmptyQueryin class- Query
- Returns:
- true if this query is now essentially "empty" (doesn't affect query logic at all) and can now be removed from the query tree. This can happen, for example, if all child queries were removed and the query logic depends on having at least one child query.
 
 - 
clonepublic BoostQuery clone() 
 
- 
 
-