java.lang.Object
org.apache.lucene.index.TermStates
Maintains a
IndexReader TermState view over IndexReader instances
containing a single term. The TermStates doesn't track if the given TermState
objects are valid, neither if the TermState instances refer to the same terms in the
associated readers.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static final classWrapper over TermState, ordinal value, term doc frequency and total term frequency -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionTermStates(IndexReaderContext context) Creates an emptyTermStatesfrom aIndexReaderContextTermStates(IndexReaderContext context, TermState state, int ord, int docFreq, long totalTermFreq) privateTermStates(Term term, IndexReaderContext context) -
Method Summary
Modifier and TypeMethodDescriptionvoidaccumulateStatistics(int docFreq, long totalTermFreq) Expert: Accumulate term statistics.static TermStatesbuild(IndexSearcher indexSearcher, Term term, boolean needsStats) voidclear()Clears theTermStatesinternal state and removes all registeredTermStatesintdocFreq()Returns the accumulated document frequency of allTermStateinstances passed toregister(TermState, int, int, long).get(LeafReaderContext ctx) private static TermsEnumloadTermsEnum(LeafReaderContext ctx, Term term) voidExpert: Registers and associates aTermStatewith an leaf ordinal.voidRegisters and associates aTermStatewith an leaf ordinal.toString()longReturns the accumulated term frequency of allTermStateinstances passed toregister(TermState, int, int, long).booleanwasBuiltFor(IndexReaderContext context) Expert: Return whether thisTermStateswas built for the givenIndexReaderContext.
-
Field Details
-
EMPTY_TERMSTATE
-
topReaderContextIdentity
-
states
-
term
-
docFreq
private int docFreq -
totalTermFreq
private long totalTermFreq
-
-
Constructor Details
-
TermStates
-
TermStates
Creates an emptyTermStatesfrom aIndexReaderContext -
TermStates
public TermStates(IndexReaderContext context, TermState state, int ord, int docFreq, long totalTermFreq)
-
-
Method Details
-
wasBuiltFor
Expert: Return whether thisTermStateswas built for the givenIndexReaderContext. This is typically used for assertions. -
build
public static TermStates build(IndexSearcher indexSearcher, Term term, boolean needsStats) throws IOException Creates aTermStatesfrom a top-levelIndexReaderContextand the givenTerm. This method will lookup the given term in all context's leaf readers and register each of the readers containing the term in the returnedTermStatesusing the leaf reader's ordinal.Note: the given context must be a top-level context.
- Parameters:
needsStats- iftruethen all leaf contexts will be visited up-front to collect term statistics. Otherwise, theTermStateobjects will be built only when requested- Throws:
IOException
-
loadTermsEnum
- Throws:
IOException
-
clear
public void clear()Clears theTermStatesinternal state and removes all registeredTermStates -
register
Registers and associates aTermStatewith an leaf ordinal. The leaf ordinal should be derived from aIndexReaderContext's leaf ord. -
register
Expert: Registers and associates aTermStatewith an leaf ordinal. The leaf ordinal should be derived from aIndexReaderContext's leaf ord. On the contrary toregister(TermState, int, int, long)this method does NOT update term statistics. -
accumulateStatistics
public void accumulateStatistics(int docFreq, long totalTermFreq) Expert: Accumulate term statistics. -
get
Returns theTermStatefor a leaf reader context ornullif noTermStatefor the context was registered.- Parameters:
ctx- theLeafReaderContextto get theTermStatefor.- Returns:
- the
TermStatefor the given readers ord ornullif noTermStatefor the reader was registered - Throws:
IOException
-
docFreq
public int docFreq()Returns the accumulated document frequency of allTermStateinstances passed toregister(TermState, int, int, long).- Returns:
- the accumulated document frequency of all
TermStateinstances passed toregister(TermState, int, int, long).
-
totalTermFreq
public long totalTermFreq()Returns the accumulated term frequency of allTermStateinstances passed toregister(TermState, int, int, long).- Returns:
- the accumulated term frequency of all
TermStateinstances passed toregister(TermState, int, int, long).
-
toString
-