Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
org.apache.lucene.search |
Code to search indices.
|
Modifier and Type | Class and Description |
---|---|
class |
BlockTermState
Holds all state required for
PostingsReaderBase
to produce a PostingsEnum without re-seeking the
terms dict. |
Modifier and Type | Method and Description |
---|---|
void |
BlockTermState.copyFrom(TermState _other) |
Modifier and Type | Class and Description |
---|---|
class |
OrdTermState
An ordinal based
TermState |
Modifier and Type | Method and Description |
---|---|
TermState |
TermState.clone() |
TermState |
TermContext.get(int ord)
|
TermState |
TermsEnum.termState()
Expert: Returns the TermsEnums internal state to position the TermsEnum
without re-seeking the term dictionary.
|
TermState |
FilteredTermsEnum.termState()
Returns the filtered enums term state
|
Modifier and Type | Method and Description |
---|---|
abstract void |
TermState.copyFrom(TermState other)
Copies the content of the given
TermState to this instance |
void |
OrdTermState.copyFrom(TermState other) |
void |
TermContext.register(TermState state,
int ord)
Expert: Registers and associates a
TermState with an leaf ordinal. |
void |
TermContext.register(TermState state,
int ord,
int docFreq,
long totalTermFreq)
Registers and associates a
TermState with an leaf ordinal. |
void |
TermsEnum.seekExact(BytesRef term,
TermState state)
Expert: Seeks a specific position by
TermState previously obtained
from TermsEnum.termState() . |
void |
FilteredTermsEnum.seekExact(BytesRef term,
TermState state)
This enum does not support seeking!
|
Constructor and Description |
---|
TermContext(IndexReaderContext context,
TermState state,
int ord,
int docFreq,
long totalTermFreq)
|
Modifier and Type | Method and Description |
---|---|
TermState |
FuzzyTermsEnum.termState() |
Modifier and Type | Method and Description |
---|---|
void |
FuzzyTermsEnum.seekExact(BytesRef term,
TermState state) |
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.