Class LengthFilter
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.LengthFilter
- All Implemented Interfaces:
Closeable,AutoCloseable
Removes words that are too long or too short from the stream.
Note: Length is calculated as the number of UTF-16 code units.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.util.AttributeSource
AttributeSource.AttributeFactory, AttributeSource.State -
Constructor Summary
ConstructorsConstructorDescriptionLengthFilter(Version version, boolean enablePositionIncrements, TokenStream in, int min, int max) Deprecated.enablePositionIncrements=false is not supported anymore as of Lucene 4.4.LengthFilter(Version version, TokenStream in, int min, int max) Create a newLengthFilter. -
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
-
LengthFilter
@Deprecated public LengthFilter(Version version, boolean enablePositionIncrements, TokenStream in, int min, int max) Deprecated.enablePositionIncrements=false is not supported anymore as of Lucene 4.4. -
LengthFilter
Create a newLengthFilter. This will filter out tokens whoseCharTermAttributeis either too short (CharSequence.length()< min) or too long (CharSequence.length()> max).- Parameters:
version- the Lucene match versionin- theTokenStreamto consumemin- the minimum lengthmax- the maximum length
-
-
Method Details
-
accept
public boolean accept()
-