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

All Superinterfaces:
Termination<TermTermination>, TermTermination

public interface TermFuzzy
extends TermTermination

Author:
Emmanuel Bernard

Method Summary
 TermFuzzy prefixLength(int prefixLength)
          Size of the prefix ignored by the fuzzyness.
 TermFuzzy threshold(float threshold)
          Threshold above which two terms are considered similar enough.
 
Methods inherited from interface org.hibernate.search.query.dsl.v2.Termination
createQuery
 

Method Detail

threshold

TermFuzzy threshold(float threshold)
Threshold above which two terms are considered similar enough. Value between 0 and 1 (1 excluded) Defaults to .5


prefixLength

TermFuzzy prefixLength(int prefixLength)
Size of the prefix ignored by the fuzzyness. A non zero value is recommended if the index contains a huge amount of distinct terms Defaults to 0



Copyright © 2006-2010 Hibernate. All Rights Reserved.