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."
* </blockquote>
*
* @see TrieDateField
* @see PointField
*/
public class DatePointField extends PointField implements DateValueFieldType {

View File

@ -62,7 +62,7 @@ public abstract class PointField extends NumericFieldType {
/**
* <p>
* 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
* of <code>&lt;fieldType/&gt;</code> declarations.
* </p>

View File

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

View File

@ -50,6 +50,7 @@ import org.apache.lucene.util.mutable.MutableValueDouble;
* @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>
* @deprecated Trie fields are deprecated as of Solr 7.0
* @see DoublePointField
*/
@Deprecated
public class TrieDoubleField extends TrieField implements DoubleValueFieldType {

View File

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

View File

@ -50,6 +50,7 @@ import org.apache.lucene.util.mutable.MutableValueFloat;
* @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>
* @deprecated Trie fields are deprecated as of Solr 7.0
* @see FloatPointField
*/
@Deprecated
public class TrieFloatField extends TrieField implements FloatValueFieldType {

View File

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

View File

@ -43,6 +43,7 @@ import org.apache.lucene.util.mutable.MutableValueLong;
*
* @see Long
* @deprecated Trie fields are deprecated as of Solr 7.0
* @see LongPointField
*/
@Deprecated
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.
* @deprecated Trie fields are deprecated as of Solr 7.0
* @see WrappedIntPointField
*/
@Deprecated
public class WrappedTrieIntField extends TrieIntField {