Class DaitchMokotoffSoundexFilterFactory
java.lang.Object
org.apache.lucene.analysis.util.AbstractAnalysisFactory
org.apache.lucene.analysis.util.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.util.AbstractAnalysisFactory
LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new PhoneticFilterFactory -
Method Summary
Modifier and TypeMethodDescriptioncreate(TokenStream input) Transform the specified input TokenStreamMethods inherited from class org.apache.lucene.analysis.util.TokenFilterFactory
availableTokenFilters, findSPIName, forName, lookupClass, normalize, reloadTokenFiltersMethods inherited from class org.apache.lucene.analysis.util.AbstractAnalysisFactory
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
-
-
Method Details
-
create
Description copied from class:TokenFilterFactoryTransform the specified input TokenStream- Specified by:
createin classTokenFilterFactory
-