mirror of https://github.com/apache/lucene.git
make these javadoc comments
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1377845 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4f76db5650
commit
682123b2fe
|
@ -63,13 +63,13 @@ public class Field implements IndexableField {
|
|||
protected final FieldType type;
|
||||
protected final String name;
|
||||
|
||||
// Field's value:
|
||||
/** Field's value */
|
||||
protected Object fieldsData;
|
||||
|
||||
// Pre-analyzed tokenStream for indexed fields; this is
|
||||
// separate from fieldsData because you are allowed to
|
||||
// have both; eg maybe field has a String value but you
|
||||
// customize how it's tokenized:
|
||||
/** Pre-analyzed tokenStream for indexed fields; this is
|
||||
* separate from fieldsData because you are allowed to
|
||||
* have both; eg maybe field has a String value but you
|
||||
* customize how it's tokenized */
|
||||
protected TokenStream tokenStream;
|
||||
|
||||
private transient TokenStream internalTokenStream;
|
||||
|
|
|
@ -27,10 +27,10 @@ import org.apache.lucene.analysis.TokenStream;
|
|||
|
||||
public final class TextField extends Field {
|
||||
|
||||
/* Indexed, tokenized, not stored. */
|
||||
/** Indexed, tokenized, not stored. */
|
||||
public static final FieldType TYPE_NOT_STORED = new FieldType();
|
||||
|
||||
/* Indexed, tokenized, stored. */
|
||||
/** Indexed, tokenized, stored. */
|
||||
public static final FieldType TYPE_STORED = new FieldType();
|
||||
|
||||
static {
|
||||
|
|
Loading…
Reference in New Issue