org.apache.solr.analysis
Class DoubleMetaphoneFilterFactory

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.DoubleMetaphoneFilterFactory

public class DoubleMetaphoneFilterFactory
extends TokenFilterFactory

Factory for DoubleMetaphoneFilter.

 <fieldType name="text_dblmtphn" class="solr.TextField" positionIncrementGap="100">
   <analyzer>
     <tokenizer class="solr.WhitespaceTokenizerFactory"/>
     <filter class="solr.DoubleMetaphoneFilterFactory" inject="true" maxCodeLength="4"/>
   </analyzer>
 </fieldType>


Field Summary
static int DEFAULT_MAX_CODE_LENGTH
           
static String INJECT
           
static String MAX_CODE_LENGTH
           
 
Fields inherited from class org.apache.lucene.analysis.util.AbstractAnalysisFactory
args, luceneMatchVersion
 
Constructor Summary
DoubleMetaphoneFilterFactory()
           
 
Method Summary
 DoubleMetaphoneFilter create(TokenStream input)
           
 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
 

Field Detail

INJECT

public static final String INJECT
See Also:
Constant Field Values

MAX_CODE_LENGTH

public static final String MAX_CODE_LENGTH
See Also:
Constant Field Values

DEFAULT_MAX_CODE_LENGTH

public static final int DEFAULT_MAX_CODE_LENGTH
See Also:
Constant Field Values
Constructor Detail

DoubleMetaphoneFilterFactory

public DoubleMetaphoneFilterFactory()
Method Detail

init

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

create

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


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