org.apache.lucene.analysis.miscellaneous
Class SetKeywordMarkerFilter
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.SetKeywordMarkerFilter
- All Implemented Interfaces:
- Closeable
public final class SetKeywordMarkerFilter
- extends KeywordMarkerFilter
Marks terms as keywords via the KeywordAttribute. Each token
contained in the provided set is marked as a keyword by setting
KeywordAttribute.setKeyword(boolean) to true.
| Methods inherited from class org.apache.lucene.util.AttributeSource |
addAttribute, addAttributeImpl, captureState, clearAttributes, cloneAttributes, copyTo, equals, getAttribute, getAttributeClassesIterator, getAttributeFactory, getAttributeImplsIterator, hasAttribute, hasAttributes, hashCode, reflectAsString, reflectWith, restoreState, toString |
SetKeywordMarkerFilter
public SetKeywordMarkerFilter(TokenStream in,
CharArraySet keywordSet)
- Create a new KeywordSetMarkerFilter, that marks the current token as a
keyword if the tokens term buffer is contained in the given set via the
KeywordAttribute.
- Parameters:
in - TokenStream to filterkeywordSet - the keywords set to lookup the current termbuffer
isKeyword
protected boolean isKeyword()
- Specified by:
isKeyword in class KeywordMarkerFilter
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.