mirror of https://github.com/apache/lucene.git
clarified javadoc
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@478302 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a01711b245
commit
e7ed9203c0
|
@ -223,9 +223,12 @@ public class MemoryIndex {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convenience method; Tokenizes the given field text and adds the resulting
|
* Convenience method; Tokenizes the given field text and adds the resulting
|
||||||
* terms to the index; Equivalent to adding a tokenized, indexed,
|
* terms to the index; Equivalent to adding an indexed non-keyword Lucene
|
||||||
* termVectorStored, unstored, non-keyword Lucene
|
* {@link org.apache.lucene.document.Field} that is
|
||||||
* {@link org.apache.lucene.document.Field}.
|
* {@link org.apache.lucene.document.Field.Index#TOKENIZED tokenized},
|
||||||
|
* {@link org.apache.lucene.document.Field.Store#NO not stored},
|
||||||
|
* {@link org.apache.lucene.document.Field.TermVector#WITH_POSITIONS termVectorStored with positions} (or
|
||||||
|
* {@link org.apache.lucene.document.Field.TermVector#WITH_POSITIONS termVectorStored with positions and offsets}),
|
||||||
*
|
*
|
||||||
* @param fieldName
|
* @param fieldName
|
||||||
* a name to be associated with the text
|
* a name to be associated with the text
|
||||||
|
|
Loading…
Reference in New Issue