Class KeepWordFilter
java.lang.Object
org.apache.lucene.util.AttributeSource
org.apache.lucene.analysis.TokenStream
org.apache.lucene.analysis.TokenFilter
org.apache.lucene.analysis.util.FilteringTokenFilter
org.apache.lucene.analysis.miscellaneous.KeepWordFilter
- All Implemented Interfaces:
Closeable,AutoCloseable
A TokenFilter that only keeps tokens with text contained in the
required words. This filter behaves like the inverse of StopFilter.
- Since:
- solr 1.3
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.util.AttributeSource
AttributeSource.AttributeFactory, AttributeSource.State -
Constructor Summary
ConstructorsConstructorDescriptionKeepWordFilter(Version version, boolean enablePositionIncrements, TokenStream in, CharArraySet words) Deprecated.enablePositionIncrements=false is not supported anymore as of Lucene 4.4.KeepWordFilter(Version version, TokenStream in, CharArraySet words) Create a newKeepWordFilter. -
Method Summary
Methods inherited from class org.apache.lucene.analysis.util.FilteringTokenFilter
end, getEnablePositionIncrements, incrementToken, reset, setEnablePositionIncrementsMethods inherited from class org.apache.lucene.analysis.TokenFilter
closeMethods 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
-
Constructor Details
-
KeepWordFilter
@Deprecated public KeepWordFilter(Version version, boolean enablePositionIncrements, TokenStream in, CharArraySet words) Deprecated.enablePositionIncrements=false is not supported anymore as of Lucene 4.4. -
KeepWordFilter
Create a newKeepWordFilter.NOTE: The words set passed to this constructor will be directly used by this filter and should not be modified.
- Parameters:
version- the Lucene match versionin- theTokenStreamto consumewords- the words to keep
-
-
Method Details
-
accept
public boolean accept()
-