| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.lucene.search.QueryTermVector
public class QueryTermVector
| Constructor Summary | |
|---|---|
| QueryTermVector(String[] queryTerms) | |
| QueryTermVector(String queryString,
                Analyzer analyzer) | |
| Method Summary | |
|---|---|
|  String | getField()The Fieldablename. | 
|  int[] | getTermFrequencies()Array of term frequencies. | 
|  String[] | getTerms() | 
|  int[] | indexesOf(String[] terms,
          int start,
          int len)Just like indexOf(int)but searches for a number of terms
  at the same time. | 
|  int | indexOf(String term)Return an index in the term numbers array returned from getTermsat which the term with the specifiedtermappears. | 
|  int | size() | 
|  String | toString() | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
| Constructor Detail | 
|---|
public QueryTermVector(String[] queryTerms)
queryTerms - The original list of terms from the query, can contain duplicates
public QueryTermVector(String queryString,
                       Analyzer analyzer)
| Method Detail | 
|---|
public String getField()
TermFreqVectorFieldable name.
getField in interface TermFreqVectorpublic final String toString()
toString in class Objectpublic int size()
size in interface TermFreqVectorpublic String[] getTerms()
getTerms in interface TermFreqVectorpublic int[] getTermFrequencies()
TermFreqVectorgetTerms
  method. Each location in the array contains the number of times this
  term occurs in the document or the document field.
getTermFrequencies in interface TermFreqVectorpublic int indexOf(String term)
TermFreqVectorgetTerms at which the term with the specified
  term appears. If this term does not appear in the array,
  return -1.
indexOf in interface TermFreqVector
public int[] indexesOf(String[] terms,
                       int start,
                       int len)
TermFreqVectorindexOf(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.
indexesOf in interface TermFreqVectorterms - array containing terms to look forstart - index in the array where the list of terms startslen - the number of terms in the list| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||