org.apache.solr.analysis
Class KeywordMarkerFilterFactory

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

public class KeywordMarkerFilterFactory
extends TokenFilterFactory
implements ResourceLoaderAware

Factory for KeywordMarkerFilter.

 <fieldType name="text_keyword" class="solr.TextField" positionIncrementGap="100">
   <analyzer>
     <tokenizer class="solr.WhitespaceTokenizerFactory"/>
     <filter class="solr.KeywordMarkerFilterFactory" protected="protectedkeyword.txt" ignoreCase="false"/>
   </analyzer>
 </fieldType>


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

Field Detail

PROTECTED_TOKENS

public static final String PROTECTED_TOKENS
See Also:
Constant Field Values
Constructor Detail

KeywordMarkerFilterFactory

public KeywordMarkerFilterFactory()
Method Detail

inform

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

isIgnoreCase

public boolean isIgnoreCase()

create

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


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