Class ConcatenateGraphFilterFactory
java.lang.Object
org.apache.lucene.analysis.util.AbstractAnalysisFactory
org.apache.lucene.analysis.util.TokenFilterFactory
org.apache.lucene.analysis.miscellaneous.ConcatenateGraphFilterFactory
Factory for
ConcatenateGraphFilter.
- preserveSep:
For lucene versions lesser than
Version.LUCENE_8_4_0WhetherConcatenateGraphFilter.SEP_LABELshould separate the input tokens in the concatenated token - tokenSeparator:
Separator to use for concatenation. If not present,
ConcatenateGraphFilter.DEFAULT_TOKEN_SEPARATORwill be used. If empty, tokens will be concatenated without any separators. - preservePositionIncrements:
Whether to add an empty token for missing positions.
The effect is a consecutive
ConcatenateGraphFilter.SEP_LABEL. When false, it's as if there were no missing positions (we pretend the surrounding tokens were adjacent). - maxGraphExpansions:
If the tokenStream graph has more than this many possible paths through, then we'll throw
TooComplexToDeterminizeExceptionto preserve the stability and memory of the machine.
- Since:
- 7.4.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate intstatic final StringSPI nameprivate booleanprivate CharacterFields inherited from class org.apache.lucene.analysis.util.AbstractAnalysisFactory
LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreate(TokenStream input) Transform the specified input TokenStreamprotected CharacterMethods 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:
-
tokenSeparator
-
preservePositionIncrements
private boolean preservePositionIncrements -
maxGraphExpansions
private int maxGraphExpansions
-
-
Constructor Details
-
ConcatenateGraphFilterFactory
-
-
Method Details
-
create
Description copied from class:TokenFilterFactoryTransform the specified input TokenStream- Specified by:
createin classTokenFilterFactory
-
getCharacter
-