Class ConditionalTokenFilterFactory
- java.lang.Object
-
- org.apache.lucene.analysis.util.AbstractAnalysisFactory
-
- org.apache.lucene.analysis.util.TokenFilterFactory
-
- org.apache.lucene.analysis.miscellaneous.ConditionalTokenFilterFactory
-
- All Implemented Interfaces:
ResourceLoaderAware
- Direct Known Subclasses:
ProtectedTermFilterFactory
public abstract class ConditionalTokenFilterFactory extends TokenFilterFactory implements ResourceLoaderAware
Abstract parent class for analysis factories that createConditionalTokenFilterinstances- Since:
- 7.4.0
- SPI Name (Note: This is case-insensitive. e.g., if the name is 'htmlStrip', 'htmlstrip' can be used when looking up the service):
- "conditional"
-
-
Field Summary
Fields Modifier and Type Field Description static StringNAMESPI name-
Fields inherited from class org.apache.lucene.analysis.util.AbstractAnalysisFactory
LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedConditionalTokenFilterFactory(Map<String,String> args)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description TokenStreamcreate(TokenStream input)Transform the specified input TokenStreamprotected abstract ConditionalTokenFiltercreate(TokenStream input, Function<TokenStream,TokenStream> inner)Modify the incomingTokenStreamwith aConditionalTokenFilterprotected voiddoInform(ResourceLoader loader)Initialises this component with the correspondingResourceLoadervoidinform(ResourceLoader loader)Initializes this component with the provided ResourceLoader (used for loading classes, files, etc).voidsetInnerFilters(List<TokenFilterFactory> innerFilters)Set the inner filter factories to produce theTokenFilters that will be wrapped by theConditionalTokenFilter-
Methods inherited from class org.apache.lucene.analysis.util.TokenFilterFactory
availableTokenFilters, findSPIName, forName, lookupClass, normalize, reloadTokenFilters
-
Methods 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 Detail
-
NAME
public static final String NAME
SPI name- See Also:
- Constant Field Values
-
-
Method Detail
-
setInnerFilters
public void setInnerFilters(List<TokenFilterFactory> innerFilters)
Set the inner filter factories to produce theTokenFilters that will be wrapped by theConditionalTokenFilter
-
create
public TokenStream create(TokenStream input)
Description copied from class:TokenFilterFactoryTransform the specified input TokenStream- Specified by:
createin classTokenFilterFactory
-
inform
public final void inform(ResourceLoader loader) throws IOException
Description copied from interface:ResourceLoaderAwareInitializes this component with the provided ResourceLoader (used for loading classes, files, etc).- Specified by:
informin interfaceResourceLoaderAware- Throws:
IOException
-
doInform
protected void doInform(ResourceLoader loader) throws IOException
Initialises this component with the correspondingResourceLoader- Throws:
IOException
-
create
protected abstract ConditionalTokenFilter create(TokenStream input, Function<TokenStream,TokenStream> inner)
Modify the incomingTokenStreamwith aConditionalTokenFilter
-
-