Class DaitchMokotoffSoundexFilterFactory
java.lang.Object
org.apache.lucene.analysis.AbstractAnalysisFactory
org.apache.lucene.analysis.TokenFilterFactory
org.apache.lucene.analysis.phonetic.DaitchMokotoffSoundexFilterFactory
Factory for
DaitchMokotoffSoundexFilter.
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:
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) final booleanstatic final Stringparameter name: true if encoded tokens should be added as synonymsstatic final StringSPI nameFields inherited from class org.apache.lucene.analysis.AbstractAnalysisFactory
LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion -
Constructor Summary
ConstructorsConstructorDescriptionDefault ctor for compatibility with SPICreates a new PhoneticFilterFactory -
Method Summary
Modifier and TypeMethodDescriptioncreate(TokenStream input) Transform the specified input TokenStreamMethods inherited from class org.apache.lucene.analysis.TokenFilterFactory
availableTokenFilters, findSPIName, forName, lookupClass, normalize, reloadTokenFiltersMethods 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 Details
-
NAME
SPI name- See Also:
-
INJECT
parameter name: true if encoded tokens should be added as synonyms- See Also:
-
inject
final boolean inject
-
-
Constructor Details
-
DaitchMokotoffSoundexFilterFactory
Creates a new PhoneticFilterFactory -
DaitchMokotoffSoundexFilterFactory
public DaitchMokotoffSoundexFilterFactory()Default ctor for compatibility with SPI
-
-
Method Details
-
create
Description copied from class:TokenFilterFactoryTransform the specified input TokenStream- Specified by:
createin classTokenFilterFactory
-