public final class LowerCaseTokenizer extends LetterTokenizer
Note: this does a decent job for most European languages, but does a terrible job for some Asian languages, where words are not separated by spaces.
You may specify the required Version compatibility when creating
LowerCaseTokenizer:
CharTokenizer uses an int based API to normalize and
detect token characters. See CharTokenizer.isTokenChar(int) and
CharTokenizer.normalize(int) for details.AttributeSource.StateDEFAULT_TOKEN_ATTRIBUTE_FACTORYDEFAULT_ATTRIBUTE_FACTORY| Constructor and Description |
|---|
LowerCaseTokenizer(AttributeFactory factory,
Reader in)
Construct a new LowerCaseTokenizer using a given
AttributeFactory. |
LowerCaseTokenizer(Reader in)
Construct a new LowerCaseTokenizer.
|
LowerCaseTokenizer(Version matchVersion,
AttributeFactory factory,
Reader in)
Deprecated.
|
LowerCaseTokenizer(Version matchVersion,
Reader in)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
protected int |
normalize(int c)
Converts char to lower case
Character.toLowerCase(int). |
isTokenCharend, incrementToken, resetclose, correctOffset, setReaderaddAttribute, addAttributeImpl, captureState, clearAttributes, cloneAttributes, copyTo, equals, getAttribute, getAttributeClassesIterator, getAttributeFactory, getAttributeImplsIterator, hasAttribute, hasAttributes, hashCode, reflectAsString, reflectWith, restoreState, toStringpublic LowerCaseTokenizer(Reader in)
in - the input to split up into tokens@Deprecated public LowerCaseTokenizer(Version matchVersion, Reader in)
LowerCaseTokenizer(Reader)public LowerCaseTokenizer(AttributeFactory factory, Reader in)
AttributeFactory.factory - the attribute factory to use for this Tokenizerin - the input to split up into tokens@Deprecated public LowerCaseTokenizer(Version matchVersion, AttributeFactory factory, Reader in)
LowerCaseTokenizer(AttributeFactory,Reader)protected int normalize(int c)
Character.toLowerCase(int).normalize in class CharTokenizerCopyright © 2000-2014 Apache Software Foundation. All Rights Reserved.