Class PatternKeywordMarkerFilter
- java.lang.Object
-
- org.apache.lucene.util.AttributeSource
-
- org.apache.lucene.analysis.TokenStream
-
- org.apache.lucene.analysis.TokenFilter
-
- org.apache.lucene.analysis.miscellaneous.KeywordMarkerFilter
-
- org.apache.lucene.analysis.miscellaneous.PatternKeywordMarkerFilter
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
public final class PatternKeywordMarkerFilter extends KeywordMarkerFilter
Marks terms as keywords via theKeywordAttribute
. Each token that matches the provided pattern is marked as a keyword by settingKeywordAttribute.setKeyword(boolean)
totrue
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.util.AttributeSource
AttributeSource.State
-
-
Field Summary
-
Fields inherited from class org.apache.lucene.analysis.TokenFilter
input
-
Fields inherited from class org.apache.lucene.analysis.TokenStream
DEFAULT_TOKEN_ATTRIBUTE_FACTORY
-
-
Constructor Summary
Constructors Constructor Description PatternKeywordMarkerFilter(TokenStream in, Pattern pattern)
Create a newPatternKeywordMarkerFilter
, that marks the current token as a keyword if the tokens term buffer matches the providedPattern
via theKeywordAttribute
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
isKeyword()
-
Methods inherited from class org.apache.lucene.analysis.miscellaneous.KeywordMarkerFilter
incrementToken
-
Methods inherited from class org.apache.lucene.analysis.TokenFilter
close, end, reset
-
Methods inherited from class org.apache.lucene.util.AttributeSource
addAttribute, addAttributeImpl, captureState, clearAttributes, cloneAttributes, copyTo, endAttributes, equals, getAttribute, getAttributeClassesIterator, getAttributeFactory, getAttributeImplsIterator, hasAttribute, hasAttributes, hashCode, reflectAsString, reflectWith, removeAllAttributes, restoreState, toString
-
-
-
-
Constructor Detail
-
PatternKeywordMarkerFilter
public PatternKeywordMarkerFilter(TokenStream in, Pattern pattern)
Create a newPatternKeywordMarkerFilter
, that marks the current token as a keyword if the tokens term buffer matches the providedPattern
via theKeywordAttribute
.- Parameters:
in
- TokenStream to filterpattern
- the pattern to apply to the incoming term buffer
-
-
Method Detail
-
isKeyword
protected boolean isKeyword()
- Specified by:
isKeyword
in classKeywordMarkerFilter
-
-