org.apache.lucene.analysis.core
Class TypeTokenFilterFactory

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.core.TypeTokenFilterFactory
All Implemented Interfaces:
ResourceLoaderAware

public class TypeTokenFilterFactory
extends TokenFilterFactory
implements ResourceLoaderAware

Factory class for TypeTokenFilter.

 <fieldType name="chars" class="solr.TextField" positionIncrementGap="100">
   <analyzer>
     <tokenizer class="solr.StandardTokenizerFactory"/>
     <filter class="solr.TypeTokenFilterFactory" types="stoptypes.txt"
                   enablePositionIncrements="true" useWhitelist="false"/>
   </analyzer>
 </fieldType>


Field Summary
 
Fields inherited from class org.apache.lucene.analysis.util.AbstractAnalysisFactory
args, luceneMatchVersion
 
Constructor Summary
TypeTokenFilterFactory()
           
 
Method Summary
 TokenStream create(TokenStream input)
          Transform the specified input TokenStream
 Set<String> getStopTypes()
           
 void inform(ResourceLoader loader)
          Initializes this component with the provided ResourceLoader (used for loading classes, files, etc).
 boolean isEnablePositionIncrements()
           
 
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, getOriginalArgs, getPattern, getSnowballWordSet, getWordSet, init, setLuceneMatchVersion, splitFileNames
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TypeTokenFilterFactory

public TypeTokenFilterFactory()
Method Detail

inform

public void inform(ResourceLoader loader)
            throws IOException
Description copied from interface: ResourceLoaderAware
Initializes this component with the provided ResourceLoader (used for loading classes, files, etc).

Specified by:
inform in interface ResourceLoaderAware
Throws:
IOException

isEnablePositionIncrements

public boolean isEnablePositionIncrements()

getStopTypes

public Set<String> getStopTypes()

create

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

Specified by:
create in class TokenFilterFactory


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