org.hibernate.search.query.dsl.v2
Interface TermCustomization

All Superinterfaces:
QueryCustomization<TermCustomization>
All Known Subinterfaces:
TermFuzzy

public interface TermCustomization
extends QueryCustomization<TermCustomization>

Author:
Emmanuel Bernard

Method Summary
 TermFuzzy fuzzy()
          Use a fuzzy search approximation (aka edit distance)
 TermCustomization ignoreAnalyzer()
          Advanced Do not execute the analyzer on the text.
 TermCustomization wildcard()
          Treat the query as a wildcard: - ? represents any single character - * represents any character sequence For faster results, it is recommended that the query text does not start with ? or *
 
Methods inherited from interface org.hibernate.search.query.dsl.v2.QueryCustomization
boostedTo, constantScore, createQuery, filter
 

Method Detail

ignoreAnalyzer

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


fuzzy

TermFuzzy fuzzy()
Use a fuzzy search approximation (aka edit distance)


wildcard

TermCustomization wildcard()
Treat the query as a wildcard: - ? represents any single character - * represents any character sequence For faster results, it is recommended that the query text does not start with ? or *



Copyright © 2006-2010 Hibernate. All Rights Reserved.