LUCENE-2889: Remove @lucene.experimental from Numeric*

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1063762 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2011-01-26 15:47:28 +00:00
parent 20621a4e72
commit 9e51a873f6
5 changed files with 0 additions and 10 deletions

View File

@ -84,8 +84,6 @@ import org.apache.lucene.analysis.tokenattributes.PositionIncrementAttribute;
* href="../search/NumericRangeQuery.html#precisionStepDesc"><code>precisionStep</code></a> * href="../search/NumericRangeQuery.html#precisionStepDesc"><code>precisionStep</code></a>
* parameter as well as how numeric fields work under the hood.</p> * parameter as well as how numeric fields work under the hood.</p>
* *
* @lucene.experimental
*
* @since 2.9 * @since 2.9
*/ */
public final class NumericTokenStream extends TokenStream { public final class NumericTokenStream extends TokenStream {

View File

@ -134,8 +134,6 @@ import org.apache.lucene.search.FieldCache; // javadocs
* values are returned as {@link String}s (according to * values are returned as {@link String}s (according to
* <code>toString(value)</code> of the used data type). * <code>toString(value)</code> of the used data type).
* *
* @lucene.experimental
*
* @since 2.9 * @since 2.9
*/ */
public final class NumericField extends AbstractField { public final class NumericField extends AbstractField {

View File

@ -39,8 +39,6 @@ import org.apache.lucene.util.NumericUtils; // for javadocs
* See {@link NumericRangeQuery} for details on how Lucene * See {@link NumericRangeQuery} for details on how Lucene
* indexes and searches numeric valued fields. * indexes and searches numeric valued fields.
* *
* @lucene.experimental
*
* @since 2.9 * @since 2.9
**/ **/
public final class NumericRangeFilter<T extends Number> extends MultiTermQueryWrapperFilter<NumericRangeQuery<T>> { public final class NumericRangeFilter<T extends Number> extends MultiTermQueryWrapperFilter<NumericRangeQuery<T>> {

View File

@ -76,8 +76,6 @@ import org.apache.lucene.index.TermsEnum;
* BooleanQuery rewrite methods without changing * BooleanQuery rewrite methods without changing
* BooleanQuery's default max clause count. * BooleanQuery's default max clause count.
* *
* @lucene.experimental
*
* <br><h3>How it works</h3> * <br><h3>How it works</h3>
* *
* <p>See the publication about <a target="_blank" href="http://www.panfmp.org">panFMP</a>, * <p>See the publication about <a target="_blank" href="http://www.panfmp.org">panFMP</a>,

View File

@ -22,8 +22,6 @@ import org.apache.lucene.document.NumericField;
import org.apache.lucene.search.NumericRangeFilter; import org.apache.lucene.search.NumericRangeFilter;
import org.apache.lucene.search.NumericRangeQuery; // for javadocs import org.apache.lucene.search.NumericRangeQuery; // for javadocs
// TODO: Remove the commented out methods before release!
/** /**
* This is a helper class to generate prefix-encoded representations for numerical values * This is a helper class to generate prefix-encoded representations for numerical values
* and supplies converters to represent float/double values as sortable integers/longs. * and supplies converters to represent float/double values as sortable integers/longs.