| org.apache.lucene.index.TermFreqVector
All known Subclasses: org.apache.lucene.search.QueryTermVector, org.apache.lucene.index.SegmentTermVector,
TermFreqVector | public interface TermFreqVector (Code) | | Provides access to stored term vector of
a document field. The vector consists of the name of the field, an array of the terms tha occur in the field of the
org.apache.lucene.document.Document and 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.
|
getTermFrequencies | public int[] getTermFrequencies()(Code) | | Array of term frequencies. Locations of the array correspond one to one
to the terms in the array obtained from getTerms
method. Each location in the array contains the number of times this
term occurs in the document or the document field.
|
getTerms | public String[] getTerms()(Code) | | An Array of term texts in ascending order. |
indexOf | public int indexOf(String term)(Code) | | Return an index in the term numbers array returned from
getTerms at which the term with the specified
term appears. If this term does not appear in the array,
return -1.
|
indexesOf | public int[] indexesOf(String[] terms, int start, int len)(Code) | | Just like indexOf(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 for Parameters: start - index in the array where the list of terms starts Parameters: len - the number of terms in the list |
size | public int size()(Code) | | The number of terms in the term vector. |
|
|