mirror of https://github.com/apache/lucene.git
minor javadoc fixes
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@707833 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8dfe073760
commit
29124f644a
|
@ -561,7 +561,8 @@ public abstract class IndexReader {
|
|||
* The array contains a vector for each vectorized field in the document.
|
||||
* Each vector contains terms and frequencies for all terms in a given vectorized field.
|
||||
* If no such fields existed, the method returns null. The term vectors that are
|
||||
* returned my either be of type TermFreqVector or of type TermPositionsVector if
|
||||
* returned may either be of type {@link TermFreqVector}
|
||||
* or of type {@link TermPositionVector} if
|
||||
* positions or offsets have been stored.
|
||||
*
|
||||
* @param docNumber document for which term frequency vectors are returned
|
||||
|
@ -579,7 +580,7 @@ public abstract class IndexReader {
|
|||
* returned vector contains terms and frequencies for the terms in
|
||||
* the specified field of this document, if the field had the storeTermVector
|
||||
* flag set. If termvectors had been stored with positions or offsets, a
|
||||
* TermPositionsVector is returned.
|
||||
* {@link TermPositionVector} is returned.
|
||||
*
|
||||
* @param docNumber document for which the term frequency vector is returned
|
||||
* @param field field for which the term frequency vector is returned.
|
||||
|
|
|
@ -21,7 +21,7 @@ import java.util.List;
|
|||
|
||||
|
||||
/**
|
||||
* The results of a SpanQueryFilter. Wraps the BitSet and the position infomration from the SpanQuery
|
||||
* The results of a SpanQueryFilter. Wraps the BitSet and the position information from the SpanQuery
|
||||
*
|
||||
*<p/>
|
||||
* NOTE: This API is still experimental and subject to change.
|
||||
|
|
Loading…
Reference in New Issue