SOLR-11390 Trie* field javadocs to @see *Point (#1612)

Co-authored-by: Christine Poerschke <cpoerschke@apache.org>
This commit is contained in:
Mike Drob 2020-07-09 12:20:56 -05:00 committed by GitHub
parent 20ec57a4fe
commit 2341c220ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 8 additions and 2 deletions

View File

@ -97,7 +97,6 @@ import org.apache.solr.util.DateMathParser;
* acronym UTC was chosen as a compromise." * acronym UTC was chosen as a compromise."
* </blockquote> * </blockquote>
* *
* @see TrieDateField
* @see PointField * @see PointField
*/ */
public class DatePointField extends PointField implements DateValueFieldType { public class DatePointField extends PointField implements DateValueFieldType {

View File

@ -62,7 +62,7 @@ public abstract class PointField extends NumericFieldType {
/** /**
* <p> * <p>
* The Test framework can set this global variable to instruct PointField that * The Test framework can set this global variable to instruct PointField that
* (on init) it should be tollerant of the <code>precisionStep</code> argument used by TrieFields. * (on init) it should be tolerant of the <code>precisionStep</code> argument used by TrieFields.
* This allows for simple randomization of TrieFields and PointFields w/o extensive duplication * This allows for simple randomization of TrieFields and PointFields w/o extensive duplication
* of <code>&lt;fieldType/&gt;</code> declarations. * of <code>&lt;fieldType/&gt;</code> declarations.
* </p> * </p>

View File

@ -82,6 +82,7 @@ import org.apache.solr.util.DateMathParser;
* *
* @see TrieField * @see TrieField
* @deprecated Trie fields are deprecated as of Solr 7.0 * @deprecated Trie fields are deprecated as of Solr 7.0
* @see DatePointField
*/ */
@Deprecated @Deprecated
public class TrieDateField extends TrieField implements DateValueFieldType { public class TrieDateField extends TrieField implements DateValueFieldType {

View File

@ -50,6 +50,7 @@ import org.apache.lucene.util.mutable.MutableValueDouble;
* @see Double * @see Double
* @see <a href="http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html#4.2.3">Java Language Specification, s4.2.3</a> * @see <a href="http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html#4.2.3">Java Language Specification, s4.2.3</a>
* @deprecated Trie fields are deprecated as of Solr 7.0 * @deprecated Trie fields are deprecated as of Solr 7.0
* @see DoublePointField
*/ */
@Deprecated @Deprecated
public class TrieDoubleField extends TrieField implements DoubleValueFieldType { public class TrieDoubleField extends TrieField implements DoubleValueFieldType {

View File

@ -81,6 +81,7 @@ import org.slf4j.LoggerFactory;
* @see org.apache.solr.legacy.LegacyNumericRangeQuery * @see org.apache.solr.legacy.LegacyNumericRangeQuery
* @since solr 1.4 * @since solr 1.4
* @deprecated Trie fields are deprecated as of Solr 7.0 * @deprecated Trie fields are deprecated as of Solr 7.0
* @see PointField
*/ */
@Deprecated @Deprecated
public class TrieField extends NumericFieldType { public class TrieField extends NumericFieldType {

View File

@ -50,6 +50,7 @@ import org.apache.lucene.util.mutable.MutableValueFloat;
* @see Float * @see Float
* @see <a href="http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html#4.2.3">Java Language Specification, s4.2.3</a> * @see <a href="http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html#4.2.3">Java Language Specification, s4.2.3</a>
* @deprecated Trie fields are deprecated as of Solr 7.0 * @deprecated Trie fields are deprecated as of Solr 7.0
* @see FloatPointField
*/ */
@Deprecated @Deprecated
public class TrieFloatField extends TrieField implements FloatValueFieldType { public class TrieFloatField extends TrieField implements FloatValueFieldType {

View File

@ -43,6 +43,7 @@ import org.apache.lucene.util.mutable.MutableValueInt;
* *
* @see Integer * @see Integer
* @deprecated Trie fields are deprecated as of Solr 7.0 * @deprecated Trie fields are deprecated as of Solr 7.0
* @see IntPointField
*/ */
@Deprecated @Deprecated
public class TrieIntField extends TrieField implements IntValueFieldType { public class TrieIntField extends TrieField implements IntValueFieldType {

View File

@ -43,6 +43,7 @@ import org.apache.lucene.util.mutable.MutableValueLong;
* *
* @see Long * @see Long
* @deprecated Trie fields are deprecated as of Solr 7.0 * @deprecated Trie fields are deprecated as of Solr 7.0
* @see LongPointField
*/ */
@Deprecated @Deprecated
public class TrieLongField extends TrieField implements LongValueFieldType { public class TrieLongField extends TrieField implements LongValueFieldType {

View File

@ -21,6 +21,7 @@ import org.apache.lucene.search.SortField;
/** /**
* Custom field wrapping an int, to test sorting via a custom comparator. * Custom field wrapping an int, to test sorting via a custom comparator.
* @deprecated Trie fields are deprecated as of Solr 7.0 * @deprecated Trie fields are deprecated as of Solr 7.0
* @see WrappedIntPointField
*/ */
@Deprecated @Deprecated
public class WrappedTrieIntField extends TrieIntField { public class WrappedTrieIntField extends TrieIntField {