mirror of https://github.com/apache/lucene.git
Fix javadoc references.
This commit is contained in:
parent
8b572f074e
commit
d69326408c
|
@ -65,7 +65,7 @@ public final class DoubleField extends Field {
|
|||
* @param name field name
|
||||
* @param value the double value
|
||||
* @throws IllegalArgumentException if the field name or value is null.
|
||||
* @deprecated Use {@link #DoubleField(String, int, Field.Store)} with {@link Field.Store#NO}
|
||||
* @deprecated Use {@link #DoubleField(String, double, Field.Store)} with {@link Field.Store#NO}
|
||||
* instead.
|
||||
*/
|
||||
@Deprecated
|
||||
|
|
|
@ -65,7 +65,7 @@ public final class FloatField extends Field {
|
|||
* @param name field name
|
||||
* @param value the float value
|
||||
* @throws IllegalArgumentException if the field name or value is null.
|
||||
* @deprecated Use {@link #FloatField(String, int, Field.Store)} with {@link Field.Store#NO}
|
||||
* @deprecated Use {@link #FloatField(String, float, Field.Store)} with {@link Field.Store#NO}
|
||||
* instead.
|
||||
*/
|
||||
@Deprecated
|
||||
|
|
|
@ -70,7 +70,7 @@ public final class LongField extends Field {
|
|||
* @param name field name
|
||||
* @param value the long value
|
||||
* @throws IllegalArgumentException if the field name or value is null.
|
||||
* @deprecated Use {@link #LongField(String, int, Field.Store)} with {@link Field.Store#NO}
|
||||
* @deprecated Use {@link #LongField(String, long, Field.Store)} with {@link Field.Store#NO}
|
||||
* instead.
|
||||
*/
|
||||
@Deprecated
|
||||
|
|
Loading…
Reference in New Issue