Class LimitTokenCountFilterFactory
- java.lang.Object
-
- org.apache.lucene.analysis.AbstractAnalysisFactory
-
- org.apache.lucene.analysis.TokenFilterFactory
-
- org.apache.lucene.analysis.miscellaneous.LimitTokenCountFilterFactory
-
public class LimitTokenCountFilterFactory extends TokenFilterFactory
Factory forLimitTokenCountFilter
.<fieldType name="text_lngthcnt" class="solr.TextField" positionIncrementGap="100"> <analyzer> <tokenizer class="solr.WhitespaceTokenizerFactory"/> <filter class="solr.LimitTokenCountFilterFactory" maxTokenCount="10" consumeAllTokens="false" /> </analyzer> </fieldType>
The
consumeAllTokens
property is optional and defaults tofalse
. SeeLimitTokenCountFilter
for an explanation of its use.- Since:
- 3.1.0
- SPI Name (case-insensitive: if the name is 'htmlStrip', 'htmlstrip' can be used when looking up the service).
- "limitTokenCount"
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONSUME_ALL_TOKENS_KEY
static String
MAX_TOKEN_COUNT_KEY
static String
NAME
SPI name-
Fields inherited from class org.apache.lucene.analysis.AbstractAnalysisFactory
LUCENE_MATCH_VERSION_PARAM, luceneMatchVersion
-
-
Constructor Summary
Constructors Constructor Description LimitTokenCountFilterFactory()
Default ctor for compatibility with SPILimitTokenCountFilterFactory(Map<String,String> args)
Creates a new LimitTokenCountFilterFactory
-
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_TOKEN_COUNT_KEY
public static final String MAX_TOKEN_COUNT_KEY
- See Also:
- Constant Field Values
-
CONSUME_ALL_TOKENS_KEY
public static final String CONSUME_ALL_TOKENS_KEY
- See Also:
- Constant Field Values
-
-
Method Detail
-
create
public TokenStream create(TokenStream input)
- Specified by:
create
in classTokenFilterFactory
-
-