org.hibernate.search.query.dsl.v2
Interface FieldCustomization<T>

All Known Subinterfaces:
TermMatchingContext
All Known Implementing Classes:
ConnectedTermMatchingContext

public interface FieldCustomization<T>

Author:
Emmanuel Bernard

Method Summary
 T boostedTo(float boost)
          Boost the field 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 ignoreAnalyzer()
          Advanced Do not execute the analyzer on the text.
 

Method Detail

boostedTo

T boostedTo(float boost)
Boost the field 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)


ignoreAnalyzer

T ignoreAnalyzer()
Advanced Do not execute the analyzer on the text. (It is usually a good idea to apply the analyzer)



Copyright © 2006-2010 Hibernate. All Rights Reserved.