Class DaitchMokotoffSoundexFilterFactory
- java.lang.Object
-
- org.apache.lucene.analysis.AbstractAnalysisFactory
-
- org.apache.lucene.analysis.TokenFilterFactory
-
- org.apache.lucene.analysis.phonetic.DaitchMokotoffSoundexFilterFactory
-
public class DaitchMokotoffSoundexFilterFactory extends TokenFilterFactory
Factory forDaitchMokotoffSoundexFilter.Create tokens based on Daitch–Mokotoff Soundex phonetic filter.
This takes one optional argument:
- inject
- (default=true) add tokens to the stream with the offset=0
<fieldType name="text_phonetic" class="solr.TextField" positionIncrementGap="100"> <analyzer> <tokenizer class="solr.WhitespaceTokenizerFactory"/> <filter class="solr.DaitchMokotoffSoundexFilterFactory" inject="true"/> </analyzer> </fieldType>- Since:
- 5.0.0
- See Also:
DaitchMokotoffSoundexFilter
-
-
Field Summary
Fields Modifier and Type Field Description (package private) booleaninjectstatic java.lang.StringINJECTparameter name: true if encoded tokens should be added as synonymsstatic java.lang.StringNAMESPI name-
Fields inherited from class org.apache.lucene.analysis.AbstractAnalysisFactory
LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion
-
-
Constructor Summary
Constructors Constructor Description DaitchMokotoffSoundexFilterFactory()Default ctor for compatibility with SPIDaitchMokotoffSoundexFilterFactory(java.util.Map<java.lang.String,java.lang.String> args)Creates a new PhoneticFilterFactory
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DaitchMokotoffSoundexFiltercreate(TokenStream input)Transform the specified input TokenStream-
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
-
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
SPI name- See Also:
- Constant Field Values
-
INJECT
public static final java.lang.String INJECT
parameter name: true if encoded tokens should be added as synonyms- See Also:
- Constant Field Values
-
inject
final boolean inject
-
-
Constructor Detail
-
DaitchMokotoffSoundexFilterFactory
public DaitchMokotoffSoundexFilterFactory(java.util.Map<java.lang.String,java.lang.String> args)
Creates a new PhoneticFilterFactory
-
DaitchMokotoffSoundexFilterFactory
public DaitchMokotoffSoundexFilterFactory()
Default ctor for compatibility with SPI
-
-
Method Detail
-
create
public DaitchMokotoffSoundexFilter create(TokenStream input)
Description copied from class:TokenFilterFactoryTransform the specified input TokenStream- Specified by:
createin classTokenFilterFactory
-
-