Package org.apache.lucene.index
Interface TermFreqVector
-
- All Known Subinterfaces:
TermPositionVector
- All Known Implementing Classes:
QueryTermVector
public interface TermFreqVectorProvides access to stored term vector of a document field. The vector consists of the name of the field, an array of the terms that occur in the field of theDocumentand a parallel array of frequencies. Thus, getTermFrequencies()[5] corresponds with the frequency of getTerms()[5], assuming there are at least 5 terms in the Document.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetField()TheFieldablename.int[]getTermFrequencies()Array of term frequencies.String[]getTerms()int[]indexesOf(String[] terms, int start, int len)Just likeindexOf(int)but searches for a number of terms at the same time.intindexOf(String term)Return an index in the term numbers array returned fromgetTermsat which the term with the specifiedtermappears.intsize()
-
-
-
Method Detail
-
getField
String getField()
TheFieldablename.- Returns:
- The name of the field this vector is associated with.
-
size
int size()
- Returns:
- The number of terms in the term vector.
-
getTerms
String[] getTerms()
- Returns:
- An Array of term texts in ascending order.
-
getTermFrequencies
int[] getTermFrequencies()
Array of term frequencies. Locations of the array correspond one to one to the terms in the array obtained fromgetTermsmethod. Each location in the array contains the number of times this term occurs in the document or the document field.
-
indexOf
int indexOf(String term)
Return an index in the term numbers array returned fromgetTermsat which the term with the specifiedtermappears. If this term does not appear in the array, return -1.
-
indexesOf
int[] indexesOf(String[] terms, int start, int len)
Just likeindexOf(int)but searches for a number of terms at the same time. Returns an array that has the same size as the number of terms searched for, each slot containing the result of searching for that term number.- Parameters:
terms- array containing terms to look forstart- index in the array where the list of terms startslen- the number of terms in the list
-
-