Package org.apache.lucene.analysis
Class CharFilterFactory
- java.lang.Object
-
- org.apache.lucene.analysis.AbstractAnalysisFactory
-
- org.apache.lucene.analysis.CharFilterFactory
-
public abstract class CharFilterFactory extends AbstractAnalysisFactory
Abstract parent class for analysis factories that createCharFilter
instances.- Since:
- 3.1
-
-
Field Summary
-
Fields inherited from class org.apache.lucene.analysis.AbstractAnalysisFactory
LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
CharFilterFactory()
Default ctor for compatibility with SPIprotected
CharFilterFactory(Map<String,String> args)
Initialize this factory via a set of key-value pairs.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static Set<String>
availableCharFilters()
returns a list of all available charfilter namesabstract Reader
create(Reader input)
Wraps the given Reader with a CharFilter.static String
findSPIName(Class<? extends CharFilterFactory> serviceClass)
looks up a SPI name for the specified char filter factorystatic CharFilterFactory
forName(String name, Map<String,String> args)
looks up a charfilter by name from context classpathstatic Class<? extends CharFilterFactory>
lookupClass(String name)
looks up a charfilter class by name from context classpathReader
normalize(Reader input)
Normalize the specified input Reader While the default implementation returns input unchanged, char filters that should be applied at normalization time can delegate tocreate
method.static void
reloadCharFilters(ClassLoader classloader)
Reloads the factory list from the givenClassLoader
.-
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
-
-
-
-
Method Detail
-
forName
public static CharFilterFactory forName(String name, Map<String,String> args)
looks up a charfilter by name from context classpath
-
lookupClass
public static Class<? extends CharFilterFactory> lookupClass(String name)
looks up a charfilter class by name from context classpath
-
availableCharFilters
public static Set<String> availableCharFilters()
returns a list of all available charfilter names
-
findSPIName
public static String findSPIName(Class<? extends CharFilterFactory> serviceClass)
looks up a SPI name for the specified char filter factory
-
reloadCharFilters
public static void reloadCharFilters(ClassLoader classloader)
Reloads the factory list from the givenClassLoader
. Changes to the factories are visible after the method ends, all iterators (availableCharFilters()
,...) stay consistent.NOTE: Only new factories are added, existing ones are never removed or replaced.
This method is expensive and should only be called for discovery of new factories on the given classpath/classloader!
-
-