org.hibernate.search.query.dsl
Interface QueryCustomization<T>

All Known Subinterfaces:
AllContext, BooleanJunction<T>, FuzzyContext, MustJunction, PhraseContext, RangeContext, TermContext, WildcardContext
All Known Implementing Classes:
ConnectedAllContext

public interface QueryCustomization<T>

Operations common to all types of queries

Author:
Emmanuel Bernard

Method Summary
 T boostedTo(float boost)
          Boost the query to a given value Most of the time positive float: - lower than 1 to diminish the weight - higher than 1 to increase the weight Could be negative but not unless you understand what is going on (advanced)
 T filteredBy(Filter filter)
          Filter the query results with the Filter instance
 T withConstantScore()
          All results matching the query have a constant score equals to the boost FIXME is that true?
 

Method Detail

boostedTo

T boostedTo(float boost)
Boost the query to a given value Most of the time positive float: - lower than 1 to diminish the weight - higher than 1 to increase the weight Could be negative but not unless you understand what is going on (advanced)


withConstantScore

T withConstantScore()
All results matching the query have a constant score equals to the boost FIXME is that true?


filteredBy

T filteredBy(Filter filter)
Filter the query results with the Filter instance



Copyright © 2006-2012 Red Hat Middleware, LLC. All Rights Reserved