org.apache.lucene.analysis.standard
Class StandardFilter
java.lang.Object
org.apache.lucene.util.AttributeSource
org.apache.lucene.analysis.TokenStream
org.apache.lucene.analysis.TokenFilter
org.apache.lucene.analysis.standard.StandardFilter
- All Implemented Interfaces:
- Closeable
public final class StandardFilter
- extends TokenFilter
Normalizes tokens extracted with StandardTokenizer
.
Method Summary |
boolean |
incrementToken()
Returns the next token in the stream, or null at EOS. |
Methods inherited from class org.apache.lucene.util.AttributeSource |
addAttribute, addAttributeImpl, captureState, clearAttributes, cloneAttributes, equals, getAttribute, getAttributeClassesIterator, getAttributeFactory, getAttributeImplsIterator, hasAttribute, hasAttributes, hashCode, restoreState, toString |
StandardFilter
public StandardFilter(TokenStream in)
- Construct filtering in.
incrementToken
public final boolean incrementToken()
throws IOException
- Returns the next token in the stream, or null at EOS.
Removes 's from the end of words.
Removes dots from acronyms.
- Specified by:
incrementToken
in class TokenStream
- Returns:
- false for end of stream; true otherwise
- Throws:
IOException
Copyright © 2000-2010 Apache Software Foundation. All Rights Reserved.