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,Unwrappable<TokenStream>
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
FieldsModifier and TypeFieldDescriptionprivate final intprivate final intprivate final CharTermAttributeFields inherited from class org.apache.lucene.analysis.TokenFilter
inputFields inherited from class org.apache.lucene.analysis.TokenStream
DEFAULT_TOKEN_ATTRIBUTE_FACTORY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanaccept()Override this method and return if the current input token should be returned byFilteringTokenFilter.incrementToken().Methods inherited from class org.apache.lucene.analysis.FilteringTokenFilter
end, incrementToken, resetMethods inherited from class org.apache.lucene.analysis.TokenFilter
close, unwrapMethods 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
-
Field Details
-
min
private final int min -
max
private final int max -
termAtt
-
-
Constructor Details
-
LengthFilter
Create a newLengthFilter. This will filter out tokens whoseCharTermAttributeis either too short (CharSequence.length()< min) or too long (CharSequence.length()> max).- Parameters:
in- theTokenStreamto consumemin- the minimum lengthmax- the maximum length
-
-
Method Details
-
accept
public boolean accept()Description copied from class:FilteringTokenFilterOverride this method and return if the current input token should be returned byFilteringTokenFilter.incrementToken().- Specified by:
acceptin classFilteringTokenFilter
-