Class ConcatenateGraphFilterFactory
- java.lang.Object
-
- org.apache.lucene.analysis.AbstractAnalysisFactory
-
- org.apache.lucene.analysis.TokenFilterFactory
-
- org.apache.lucene.analysis.miscellaneous.ConcatenateGraphFilterFactory
-
public class ConcatenateGraphFilterFactory extends TokenFilterFactory
Factory forConcatenateGraphFilter.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:
ConcatenateGraphFilter
-
-
Field Summary
Fields Modifier and Type Field Description private intmaxGraphExpansionsstatic java.lang.StringNAMESPI nameprivate booleanpreservePositionIncrementsprivate java.lang.CharactertokenSeparator-
Fields inherited from class org.apache.lucene.analysis.AbstractAnalysisFactory
LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion
-
-
Constructor Summary
Constructors Constructor Description ConcatenateGraphFilterFactory()Default ctor for compatibility with SPIConcatenateGraphFilterFactory(java.util.Map<java.lang.String,java.lang.String> args)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TokenStreamcreate(TokenStream input)Transform the specified input TokenStreamprotected java.lang.CharactergetCharacter(java.util.Map<java.lang.String,java.lang.String> args, java.lang.String name, java.lang.Character defaultVal)-
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 java.lang.String NAME
SPI name- See Also:
- Constant Field Values
-
tokenSeparator
private java.lang.Character tokenSeparator
-
preservePositionIncrements
private boolean preservePositionIncrements
-
maxGraphExpansions
private int maxGraphExpansions
-
-
Method Detail
-
create
public TokenStream create(TokenStream input)
Description copied from class:TokenFilterFactoryTransform the specified input TokenStream- Specified by:
createin classTokenFilterFactory
-
getCharacter
protected java.lang.Character getCharacter(java.util.Map<java.lang.String,java.lang.String> args, java.lang.String name, java.lang.Character defaultVal)
-
-