Class DoubleMetaphoneFilterFactory

java.lang.Object
org.apache.lucene.analysis.AbstractAnalysisFactory
org.apache.lucene.analysis.TokenFilterFactory
org.apache.lucene.analysis.phonetic.DoubleMetaphoneFilterFactory

public class DoubleMetaphoneFilterFactory extends org.apache.lucene.analysis.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>
Since:
3.1
SPI Name (case-insensitive: if the name is 'htmlStrip', 'htmlstrip' can be used when looking up the service).
"doubleMetaphone"
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    default maxCodeLength if not specified
    static final String
    parameter name: true if encoded tokens should be added as synonyms
    static final String
    parameter name: restricts the length of the phonetic code
    static final String
    SPI name

    Fields inherited from class org.apache.lucene.analysis.AbstractAnalysisFactory

    LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion
  • Constructor Summary

    Constructors
    Constructor
    Description
    Default ctor for compatibility with SPI
    Creates a new DoubleMetaphoneFilterFactory
  • Method Summary

    Modifier and Type
    Method
    Description
    create(org.apache.lucene.analysis.TokenStream input)
     

    Methods inherited from class org.apache.lucene.analysis.TokenFilterFactory

    availableTokenFilters, findSPIName, forName, lookupClass, normalize, reloadTokenFilters

    Methods inherited from class org.apache.lucene.analysis.AbstractAnalysisFactory

    defaultCtorException, get, get, get, get, get, getBoolean, getChar, getClassArg, getFloat, getInt, getLines, getLuceneMatchVersion, getOriginalArgs, getPattern, getSet, getSnowballWordSet, getWordSet, isExplicitLuceneMatchVersion, require, require, require, requireBoolean, requireChar, requireFloat, requireInt, setExplicitLuceneMatchVersion, splitAt, splitFileNames

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • NAME

      public static final String NAME
      SPI name
      See Also:
    • INJECT

      public static final String INJECT
      parameter name: true if encoded tokens should be added as synonyms
      See Also:
    • MAX_CODE_LENGTH

      public static final String MAX_CODE_LENGTH
      parameter name: restricts the length of the phonetic code
      See Also:
    • DEFAULT_MAX_CODE_LENGTH

      public static final int DEFAULT_MAX_CODE_LENGTH
      default maxCodeLength if not specified
      See Also:
  • Constructor Details

    • DoubleMetaphoneFilterFactory

      public DoubleMetaphoneFilterFactory(Map<String,String> args)
      Creates a new DoubleMetaphoneFilterFactory
    • DoubleMetaphoneFilterFactory

      public DoubleMetaphoneFilterFactory()
      Default ctor for compatibility with SPI
  • Method Details

    • create

      public DoubleMetaphoneFilter create(org.apache.lucene.analysis.TokenStream input)
      Specified by:
      create in class org.apache.lucene.analysis.TokenFilterFactory