mirror of https://github.com/apache/lucene.git
SOLR-11390 Trie* field javadocs to @see *Point (#1612)
Co-authored-by: Christine Poerschke <cpoerschke@apache.org>
This commit is contained in:
parent
20ec57a4fe
commit
2341c220ce
|
@ -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 {
|
||||
|
|
|
@ -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><fieldType/></code> declarations.
|
||||
* </p>
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue