Package | Description |
---|---|
org.apache.lucene.analysis |
API and code to convert text into indexable/searchable tokens.
|
org.apache.lucene.analysis.standard |
Standards-based analyzers implemented with JFlex.
|
org.apache.lucene.analysis.standard.std31 |
Backwards-compatible implementation to match
Version.LUCENE_31 |
org.apache.lucene.analysis.standard.std34 |
Backwards-compatible implementation to match
Version.LUCENE_34 |
org.apache.lucene.analysis.tokenattributes |
Useful
Attribute s for text analysis. |
Modifier and Type | Class | Description |
---|---|---|
class |
Token |
A Token is an occurrence of a term from the text of a field.
|
Modifier and Type | Method | Description |
---|---|---|
void |
StandardTokenizerImpl.getText(CharTermAttribute t) |
Fills CharTermAttribute with the current token text.
|
void |
StandardTokenizerInterface.getText(CharTermAttribute t) |
Copies the matched text into the CharTermAttribute
|
void |
UAX29URLEmailTokenizerImpl.getText(CharTermAttribute t) |
Fills CharTermAttribute with the current token text.
|
Modifier and Type | Method | Description |
---|---|---|
void |
StandardTokenizerImpl31.getText(CharTermAttribute t) |
Deprecated.
Fills CharTermAttribute with the current token text.
|
void |
UAX29URLEmailTokenizerImpl31.getText(CharTermAttribute t) |
Deprecated.
Fills CharTermAttribute with the current token text.
|
Modifier and Type | Method | Description |
---|---|---|
void |
UAX29URLEmailTokenizerImpl34.getText(CharTermAttribute t) |
Deprecated.
Fills CharTermAttribute with the current token text.
|
Modifier and Type | Class | Description |
---|---|---|
class |
CharTermAttributeImpl |
The term text of a Token.
|
class |
TermAttributeImpl |
Deprecated.
This class is not used anymore.
|
Modifier and Type | Method | Description |
---|---|---|
CharTermAttribute |
CharTermAttribute.append(char c) |
|
CharTermAttribute |
CharTermAttribute.append(CharSequence csq) |
|
CharTermAttribute |
CharTermAttribute.append(CharSequence csq,
int start,
int end) |
|
CharTermAttribute |
CharTermAttribute.append(String s) |
Appends the specified
String to this character sequence. |
CharTermAttribute |
CharTermAttribute.append(StringBuilder sb) |
Appends the specified
StringBuilder to this character sequence. |
CharTermAttribute |
CharTermAttribute.append(CharTermAttribute termAtt) |
Appends the contents of the other
CharTermAttribute to this character sequence. |
CharTermAttribute |
CharTermAttributeImpl.append(char c) |
|
CharTermAttribute |
CharTermAttributeImpl.append(CharSequence csq) |
|
CharTermAttribute |
CharTermAttributeImpl.append(CharSequence csq,
int start,
int end) |
|
CharTermAttribute |
CharTermAttributeImpl.append(String s) |
|
CharTermAttribute |
CharTermAttributeImpl.append(StringBuilder s) |
|
CharTermAttribute |
CharTermAttributeImpl.append(CharTermAttribute ta) |
|
CharTermAttribute |
CharTermAttribute.setEmpty() |
Sets the length of the termBuffer to zero.
|
CharTermAttribute |
CharTermAttributeImpl.setEmpty() |
|
CharTermAttribute |
CharTermAttribute.setLength(int length) |
Set number of valid characters (length of the term) in
the termBuffer array.
|
CharTermAttribute |
CharTermAttributeImpl.setLength(int length) |
Modifier and Type | Method | Description |
---|---|---|
CharTermAttribute |
CharTermAttribute.append(CharTermAttribute termAtt) |
Appends the contents of the other
CharTermAttribute to this character sequence. |
CharTermAttribute |
CharTermAttributeImpl.append(CharTermAttribute ta) |
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.