|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.lucene.util.AttributeSource
org.apache.lucene.analysis.TokenStream
org.apache.lucene.analysis.Tokenizer
org.apache.lucene.analysis.CharTokenizer
org.apache.lucene.analysis.LetterTokenizer
public class LetterTokenizer
A LetterTokenizer is a tokenizer that divides text at non-letters. That's to say, it defines tokens as maximal strings of adjacent letters, as defined by java.lang.Character.isLetter() predicate.
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 must specify the required 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.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class org.apache.lucene.util.AttributeSource |
|---|
AttributeSource.AttributeFactory, AttributeSource.State |
| Field Summary |
|---|
| Fields inherited from class org.apache.lucene.analysis.Tokenizer |
|---|
input |
| Constructor Summary | |
|---|---|
LetterTokenizer(AttributeSource.AttributeFactory factory,
Reader in)
Deprecated. use LetterTokenizer(Version, AttributeSource.AttributeFactory, Reader)
instead. This will be removed in Lucene 4.0. |
|
LetterTokenizer(AttributeSource source,
Reader in)
Deprecated. use LetterTokenizer(Version, AttributeSource, Reader) instead.
This will be removed in Lucene 4.0. |
|
LetterTokenizer(Reader in)
Deprecated. use LetterTokenizer(Version, Reader) instead. This
will be removed in Lucene 4.0. |
|
LetterTokenizer(Version matchVersion,
AttributeSource.AttributeFactory factory,
Reader in)
Construct a new LetterTokenizer using a given AttributeSource.AttributeFactory. |
|
LetterTokenizer(Version matchVersion,
AttributeSource source,
Reader in)
Construct a new LetterTokenizer using a given AttributeSource. |
|
LetterTokenizer(Version matchVersion,
Reader in)
Construct a new LetterTokenizer. |
|
| Method Summary | |
|---|---|
protected boolean |
isTokenChar(int c)
Collects only characters which satisfy Character.isLetter(int). |
| Methods inherited from class org.apache.lucene.analysis.CharTokenizer |
|---|
end, incrementToken, isTokenChar, normalize, normalize, reset |
| Methods inherited from class org.apache.lucene.analysis.Tokenizer |
|---|
close, correctOffset |
| Methods inherited from class org.apache.lucene.analysis.TokenStream |
|---|
reset |
| 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 |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public LetterTokenizer(Version matchVersion,
Reader in)
matchVersion - Lucene version to match See abovein - the input to split up into tokens
public LetterTokenizer(Version matchVersion,
AttributeSource source,
Reader in)
AttributeSource.
matchVersion - Lucene version to match See abovesource - the attribute source to use for this Tokenizerin - the input to split up into tokens
public LetterTokenizer(Version matchVersion,
AttributeSource.AttributeFactory factory,
Reader in)
AttributeSource.AttributeFactory.
matchVersion - Lucene version to match See abovefactory - the attribute factory to use for this Tokenizerin - the input to split up into tokens@Deprecated public LetterTokenizer(Reader in)
LetterTokenizer(Version, Reader) instead. This
will be removed in Lucene 4.0.
@Deprecated
public LetterTokenizer(AttributeSource source,
Reader in)
LetterTokenizer(Version, AttributeSource, Reader) instead.
This will be removed in Lucene 4.0.
AttributeSource.
@Deprecated
public LetterTokenizer(AttributeSource.AttributeFactory factory,
Reader in)
LetterTokenizer(Version, AttributeSource.AttributeFactory, Reader)
instead. This will be removed in Lucene 4.0.
AttributeSource.AttributeFactory.
| Method Detail |
|---|
protected boolean isTokenChar(int c)
Character.isLetter(int).
isTokenChar in class CharTokenizer
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||