public class LetterTokenizer extends CharTokenizer
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 Version
compatibility when creating
LetterTokenizer
:
CharTokenizer
uses an int based API to normalize and
detect token characters. See CharTokenizer.isTokenChar(int)
and
CharTokenizer.normalize(int)
for details.AttributeSource.State
DEFAULT_TOKEN_ATTRIBUTE_FACTORY
DEFAULT_ATTRIBUTE_FACTORY
Constructor and Description |
---|
LetterTokenizer(AttributeFactory factory,
Reader in)
Construct a new LetterTokenizer using a given
AttributeFactory . |
LetterTokenizer(Reader in)
Construct a new LetterTokenizer.
|
LetterTokenizer(Version matchVersion,
AttributeFactory factory,
Reader in)
Deprecated.
|
LetterTokenizer(Version matchVersion,
Reader in)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
isTokenChar(int c)
Collects only characters which satisfy
Character.isLetter(int) . |
end, incrementToken, normalize, reset
close, correctOffset, setReader
addAttribute, addAttributeImpl, captureState, clearAttributes, cloneAttributes, copyTo, equals, getAttribute, getAttributeClassesIterator, getAttributeFactory, getAttributeImplsIterator, hasAttribute, hasAttributes, hashCode, reflectAsString, reflectWith, restoreState, toString
public LetterTokenizer(Reader in)
in
- the input to split up into tokens@Deprecated public LetterTokenizer(Version matchVersion, Reader in)
LetterTokenizer(Reader)
public LetterTokenizer(AttributeFactory factory, Reader in)
AttributeFactory
.factory
- the attribute factory to use for this Tokenizer
in
- the input to split up into tokens@Deprecated public LetterTokenizer(Version matchVersion, AttributeFactory factory, Reader in)
LetterTokenizer(AttributeFactory,Reader)
protected boolean isTokenChar(int c)
Character.isLetter(int)
.isTokenChar
in class CharTokenizer
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.