org.apache.lucene.analysis
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.LengthFilter
- All Implemented Interfaces:
- Closeable
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.
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 |
LengthFilter
public LengthFilter(boolean enablePositionIncrements,
TokenStream in,
int min,
int max)
- Build a filter that removes words that are too long or too
short from the text.
LengthFilter
@Deprecated
public LengthFilter(TokenStream in,
int min,
int max)
- Deprecated. Use
LengthFilter(boolean, TokenStream, int, int)
instead.
- Build a filter that removes words that are too long or too
short from the text.
accept
public boolean accept()
throws IOException
- Description copied from class:
FilteringTokenFilter
- Override this method and return if the current input token should be returned by
FilteringTokenFilter.incrementToken()
.
- Specified by:
accept
in class FilteringTokenFilter
- Throws:
IOException
Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.