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."
|
* 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 {
|
||||||
|
|
|
@ -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><fieldType/></code> declarations.
|
* of <code><fieldType/></code> declarations.
|
||||||
* </p>
|
* </p>
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue