Class ConcatenateGraphFilterFactory
java.lang.Object
org.apache.lucene.analysis.AbstractAnalysisFactory
org.apache.lucene.analysis.TokenFilterFactory
org.apache.lucene.analysis.miscellaneous.ConcatenateGraphFilterFactory
Factory for
ConcatenateGraphFilter.
preserveSep: For lucene versions lesser thanVersion.LUCENE_8_4_0WhetherConcatenateGraphFilter.SEP_LABELshould separate the input tokens in the concatenated tokentokenSeparator: 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 consecutiveConcatenateGraphFilter.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 throwTooComplexToDeterminizeExceptionto 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.AbstractAnalysisFactory
LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion -
Constructor Summary
ConstructorsConstructorDescriptionDefault ctor for compatibility with SPI -
Method Summary
Modifier and TypeMethodDescriptioncreate(TokenStream input) Transform the specified input TokenStreamprotected CharacterMethods inherited from class org.apache.lucene.analysis.TokenFilterFactory
availableTokenFilters, findSPIName, forName, lookupClass, normalize, reloadTokenFiltersMethods 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 Details
-
NAME
SPI name- See Also:
-
tokenSeparator
-
preservePositionIncrements
private boolean preservePositionIncrements -
maxGraphExpansions
private int maxGraphExpansions
-
-
Constructor Details
-
ConcatenateGraphFilterFactory
-
ConcatenateGraphFilterFactory
public ConcatenateGraphFilterFactory()Default ctor for compatibility with SPI
-
-
Method Details
-
create
Description copied from class:TokenFilterFactoryTransform the specified input TokenStream- Specified by:
createin classTokenFilterFactory
-
getCharacter
-