org.apache.solr.analysis
Class HyphenationCompoundWordTokenFilterFactory

java.lang.Object
  extended by org.apache.lucene.analysis.util.AbstractAnalysisFactory
      extended by org.apache.lucene.analysis.util.TokenFilterFactory
          extended by org.apache.solr.analysis.HyphenationCompoundWordTokenFilterFactory
All Implemented Interfaces:
ResourceLoaderAware

public class HyphenationCompoundWordTokenFilterFactory
extends TokenFilterFactory
implements ResourceLoaderAware

Factory for HyphenationCompoundWordTokenFilter.

This factory accepts the following parameters:

 <fieldType name="text_hyphncomp" class="solr.TextField" positionIncrementGap="100">
   <analyzer>
     <tokenizer class="solr.WhitespaceTokenizerFactory"/>
     <filter class="solr.HyphenationCompoundWordTokenFilterFactory" hyphenator="hyphenator.xml" encoding="UTF-8"
             dictionary="dictionary.txt" minWordSize="5" minSubwordSize="2" maxSubwordSize="15" onlyLongestMatch="false"/>
   </analyzer>
 </fieldType>

See Also:
HyphenationCompoundWordTokenFilter

Field Summary
 
Fields inherited from class org.apache.lucene.analysis.util.AbstractAnalysisFactory
args, luceneMatchVersion
 
Constructor Summary
HyphenationCompoundWordTokenFilterFactory()
           
 
Method Summary
 HyphenationCompoundWordTokenFilter create(TokenStream input)
           
 void inform(ResourceLoader loader)
           
 void init(Map<String,String> args)
           
 
Methods inherited from class org.apache.lucene.analysis.util.AbstractAnalysisFactory
assureMatchVersion, getArgs, getBoolean, getBoolean, getInt, getInt, getInt, getLuceneMatchVersion, getPattern, getSnowballWordSet, getWordSet, setLuceneMatchVersion, splitFileNames
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HyphenationCompoundWordTokenFilterFactory

public HyphenationCompoundWordTokenFilterFactory()
Method Detail

init

public void init(Map<String,String> args)
Overrides:
init in class AbstractAnalysisFactory

inform

public void inform(ResourceLoader loader)
Specified by:
inform in interface ResourceLoaderAware

create

public HyphenationCompoundWordTokenFilter create(TokenStream input)
Specified by:
create in class TokenFilterFactory


Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.