Package | Description |
---|---|
org.apache.lucene.analysis |
Text analysis.
|
org.apache.lucene.analysis.cjk |
Analyzer for Chinese, Japanese, and Korean, which indexes bigrams.
|
org.apache.lucene.analysis.commongrams |
Construct n-grams for frequently occurring terms and phrases.
|
org.apache.lucene.analysis.compound |
A filter that decomposes compound words you find in many Germanic
languages into the word parts.
|
org.apache.lucene.analysis.core |
Basic, general-purpose analysis components.
|
org.apache.lucene.analysis.hunspell |
Stemming TokenFilter using a Java implementation of the
Hunspell stemming algorithm.
|
org.apache.lucene.analysis.minhash |
MinHash filtering (for LSH).
|
org.apache.lucene.analysis.miscellaneous |
Miscellaneous Tokenstreams.
|
org.apache.lucene.analysis.ngram |
Character n-gram tokenizers and filters.
|
org.apache.lucene.analysis.pattern |
Set of components for pattern-based (regex) analysis.
|
org.apache.lucene.analysis.shingle |
Word n-gram filters.
|
org.apache.lucene.analysis.sinks | |
org.apache.lucene.analysis.synonym |
Analysis components for Synonyms.
|
org.apache.lucene.analysis.wikipedia |
Tokenizer that is aware of Wikipedia syntax.
|
org.apache.lucene.util |
Some utility classes.
|
Modifier and Type | Field and Description |
---|---|
private AttributeSource.State |
CachingTokenFilter.finalState |
Modifier and Type | Field and Description |
---|---|
private java.util.List<AttributeSource.State> |
CachingTokenFilter.cache |
private java.util.Iterator<AttributeSource.State> |
CachingTokenFilter.iterator |
Modifier and Type | Field and Description |
---|---|
private AttributeSource.State |
CJKBigramFilter.loneState |
Modifier and Type | Field and Description |
---|---|
private AttributeSource.State |
CommonGramsQueryFilter.previous |
private AttributeSource.State |
CommonGramsFilter.savedState |
Modifier and Type | Field and Description |
---|---|
private AttributeSource.State |
CompoundWordTokenFilterBase.current |
Modifier and Type | Field and Description |
---|---|
private java.util.List<AttributeSource.State> |
FlattenGraphFilter.InputNode.tokens |
Modifier and Type | Field and Description |
---|---|
private AttributeSource.State |
HunspellStemFilter.savedState |
Modifier and Type | Field and Description |
---|---|
private AttributeSource.State |
MinHashFilter.endState |
Modifier and Type | Field and Description |
---|---|
private AttributeSource.State[] |
WordDelimiterFilter.buffered
Deprecated.
|
private AttributeSource.State |
ConditionalTokenFilter.bufferedState |
private AttributeSource.State |
ConditionalTokenFilter.endState |
private AttributeSource.State |
FingerprintFilter.finalState |
private AttributeSource.State |
HyphenatedWordsFilter.savedState |
private AttributeSource.State |
WordDelimiterGraphFilter.savedState |
(package private) AttributeSource.State |
TypeAsSynonymFilter.savedToken |
private AttributeSource.State |
ASCIIFoldingFilter.state |
private AttributeSource.State |
KeywordRepeatFilter.state |
Modifier and Type | Field and Description |
---|---|
private AttributeSource.State |
EdgeNGramTokenFilter.state |
private AttributeSource.State |
NGramTokenFilter.state |
Modifier and Type | Field and Description |
---|---|
private AttributeSource.State |
PatternCaptureGroupTokenFilter.state |
Modifier and Type | Field and Description |
---|---|
private AttributeSource.State |
ShingleFilter.endState
Holds the State after input.end() was called, so we can
restore it in our end() impl.
|
Modifier and Type | Field and Description |
---|---|
private AttributeSource.State |
TeeSinkTokenFilter.States.finalState |
Modifier and Type | Field and Description |
---|---|
private java.util.Iterator<AttributeSource.State> |
TeeSinkTokenFilter.SinkTokenStream.it |
private java.util.List<AttributeSource.State> |
TeeSinkTokenFilter.States.states |
Modifier and Type | Method and Description |
---|---|
(package private) AttributeSource.State |
TeeSinkTokenFilter.States.getFinalState() |
Modifier and Type | Method and Description |
---|---|
(package private) java.util.Iterator<AttributeSource.State> |
TeeSinkTokenFilter.States.getStates() |
Modifier and Type | Method and Description |
---|---|
(package private) void |
TeeSinkTokenFilter.States.add(AttributeSource.State state) |
(package private) void |
TeeSinkTokenFilter.States.setFinalState(AttributeSource.State finalState) |
Modifier and Type | Field and Description |
---|---|
(package private) AttributeSource.State |
SynonymGraphFilter.BufferedInputToken.state |
(package private) AttributeSource.State |
SynonymGraphFilter.BufferedOutputToken.state |
(package private) AttributeSource.State |
SynonymFilter.PendingInput.state |
Constructor and Description |
---|
BufferedOutputToken(AttributeSource.State state,
java.lang.String term,
int startNode,
int endNode) |
Modifier and Type | Field and Description |
---|---|
private java.util.Iterator<AttributeSource.State> |
WikipediaTokenizer.tokens |
Modifier and Type | Field and Description |
---|---|
private AttributeSource.State[] |
AttributeSource.currentState |
(package private) AttributeSource.State |
AttributeSource.State.next |
Modifier and Type | Method and Description |
---|---|
AttributeSource.State |
AttributeSource.captureState()
Captures the state of all Attributes.
|
AttributeSource.State |
AttributeSource.State.clone() |
private AttributeSource.State |
AttributeSource.getCurrentState() |
Modifier and Type | Method and Description |
---|---|
void |
AttributeSource.restoreState(AttributeSource.State state)
Restores this state by copying the values of all attribute implementations
that this state contains into the attributes implementations of the targetStream.
|