org.apache.lucene.analysis.compound
Class DictionaryCompoundWordTokenFilterFactory

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

public class DictionaryCompoundWordTokenFilterFactory
extends TokenFilterFactory
implements ResourceLoaderAware

Factory for DictionaryCompoundWordTokenFilter.

 <fieldType name="text_dictcomp" class="solr.TextField" positionIncrementGap="100">
   <analyzer>
     <tokenizer class="solr.WhitespaceTokenizerFactory"/>
     <filter class="solr.DictionaryCompoundWordTokenFilterFactory" dictionary="dictionary.txt"
             minWordSize="5" minSubwordSize="2" maxSubwordSize="15" onlyLongestMatch="true"/>
   </analyzer>
 </fieldType>


Field Summary
 
Fields inherited from class org.apache.lucene.analysis.util.AbstractAnalysisFactory
args, luceneMatchVersion
 
Constructor Summary
DictionaryCompoundWordTokenFilterFactory()
           
 
Method Summary
 TokenStream create(TokenStream input)
          Transform the specified input TokenStream
 void inform(ResourceLoader loader)
           
 void init(Map<String,String> args)
           
 
Methods inherited from class org.apache.lucene.analysis.util.TokenFilterFactory
availableTokenFilters, forName, lookupClass, reloadTokenFilters
 
Methods inherited from class org.apache.lucene.analysis.util.AbstractAnalysisFactory
assureMatchVersion, getArgs, getBoolean, getBoolean, getInt, getInt, getInt, getLines, 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

DictionaryCompoundWordTokenFilterFactory

public DictionaryCompoundWordTokenFilterFactory()
Method Detail

init

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

inform

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

create

public TokenStream create(TokenStream input)
Description copied from class: TokenFilterFactory
Transform the specified input TokenStream

Specified by:
create in class TokenFilterFactory


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