Class LengthFilter
- java.lang.Object
-
- org.apache.lucene.util.AttributeSource
-
- org.apache.lucene.analysis.TokenStream
-
- org.apache.lucene.analysis.TokenFilter
-
- org.apache.lucene.analysis.FilteringTokenFilter
-
- org.apache.lucene.analysis.miscellaneous.LengthFilter
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
public final class LengthFilter extends FilteringTokenFilter
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.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 LengthFilter(TokenStream in, int min, int max)
Create a newLengthFilter
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept()
-
Methods inherited from class org.apache.lucene.analysis.FilteringTokenFilter
end, incrementToken, reset
-
Methods inherited from class org.apache.lucene.analysis.TokenFilter
close
-
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
-
LengthFilter
public LengthFilter(TokenStream in, int min, int max)
Create a newLengthFilter
. This will filter out tokens whoseCharTermAttribute
is either too short (CharSequence.length()
< min) or too long (CharSequence.length()
> max).- Parameters:
in
- theTokenStream
to consumemin
- the minimum lengthmax
- the maximum length
-
-
Method Detail
-
accept
public boolean accept()
- Specified by:
accept
in classFilteringTokenFilter
-
-