Class FingerprintFilterFactory
- java.lang.Object
-
- org.apache.lucene.analysis.AbstractAnalysisFactory
-
- org.apache.lucene.analysis.TokenFilterFactory
-
- org.apache.lucene.analysis.miscellaneous.FingerprintFilterFactory
-
public class FingerprintFilterFactory extends TokenFilterFactory
Factory forFingerprintFilter
.The
maxOutputTokenSize
property is optional and defaults to1024
. Theseparator
property is optional and defaults to the space character. SeeFingerprintFilter
for an explanation of its use.- Since:
- 5.4.0
- SPI Name (case-insensitive: if the name is 'htmlStrip', 'htmlstrip' can be used when looking up the service).
- "fingerprint"
-
-
Field Summary
Fields Modifier and Type Field Description static String
MAX_OUTPUT_TOKEN_SIZE_KEY
static String
NAME
SPI namestatic String
SEPARATOR_KEY
-
Fields inherited from class org.apache.lucene.analysis.AbstractAnalysisFactory
LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion
-
-
Constructor Summary
Constructors Constructor Description FingerprintFilterFactory()
Default ctor for compatibility with SPIFingerprintFilterFactory(Map<String,String> args)
Creates a new FingerprintFilterFactory
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TokenStream
create(TokenStream input)
-
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 String NAME
SPI name- See Also:
- Constant Field Values
-
MAX_OUTPUT_TOKEN_SIZE_KEY
public static final String MAX_OUTPUT_TOKEN_SIZE_KEY
- See Also:
- Constant Field Values
-
SEPARATOR_KEY
public static final String SEPARATOR_KEY
- See Also:
- Constant Field Values
-
-
Method Detail
-
create
public TokenStream create(TokenStream input)
- Specified by:
create
in classTokenFilterFactory
-
-