fixed dead javadoc links

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/docvalues@1128981 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Simon Willnauer 2011-05-30 02:11:13 +00:00
parent 88d2e85407
commit 6aaea0ce54
2 changed files with 4 additions and 6 deletions

View File

@ -29,8 +29,6 @@ import org.apache.lucene.util.BytesRef;
/**
* nocommit - javadoc
*
* @see FieldsEnum#docValues()
* @see Fields#docValues(String)
* @lucene.experimental
*/
public abstract class DocValues implements Closeable {

View File

@ -18,16 +18,16 @@ package org.apache.lucene.index.values;
*/
import org.apache.lucene.index.codecs.Codec;
import org.apache.lucene.index.codecs.FieldsConsumer;
import org.apache.lucene.index.codecs.PerDocConsumer;
import org.apache.lucene.index.values.DocValues.SortedSource;
/**
* {@link ValueType} specifies the type of the {@link DocValues} for a certain field.
* A {@link ValueType} only defines the data type for a field while the actual
* implemenation used to encode and decode the values depends on the field's
* Implementation used to encode and decode the values depends on the field's
* {@link Codec}. It is up to the {@link Codec} implementing
* {@link FieldsConsumer#addValuesField(org.apache.lucene.index.FieldInfo)} and
* using a different low-level implemenations to write the stored values for a
* {@link PerDocConsumer#addValuesField(org.apache.lucene.index.FieldInfo)} and
* using a different low-level implementations to write the stored values for a
* field.
*
* @lucene.experimental