You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ab...@apache.org on 2016/12/19 12:52:05 UTC

[21/23] lucene-solr:feature/metrics: LUCENE-7590: make (Sorted)NumericDocValuesStats public

LUCENE-7590: make (Sorted)NumericDocValuesStats public


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/321c6f09
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/321c6f09
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/321c6f09

Branch: refs/heads/feature/metrics
Commit: 321c6f090f04463a8798d090e5426efeabbdc418
Parents: 23206ca
Author: Shai Erera <sh...@apache.org>
Authored: Mon Dec 19 10:14:58 2016 +0200
Committer: Shai Erera <sh...@apache.org>
Committed: Mon Dec 19 10:14:58 2016 +0200

----------------------------------------------------------------------
 .../src/java/org/apache/lucene/search/DocValuesStats.java | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/321c6f09/lucene/misc/src/java/org/apache/lucene/search/DocValuesStats.java
----------------------------------------------------------------------
diff --git a/lucene/misc/src/java/org/apache/lucene/search/DocValuesStats.java b/lucene/misc/src/java/org/apache/lucene/search/DocValuesStats.java
index b6449cc..f3319ee 100644
--- a/lucene/misc/src/java/org/apache/lucene/search/DocValuesStats.java
+++ b/lucene/misc/src/java/org/apache/lucene/search/DocValuesStats.java
@@ -44,7 +44,7 @@ public abstract class DocValuesStats<T> {
   }
 
   /**
-   * Called after #{@link DocValuesStats#accumulate(int)} was processed and verified that the document has a value for
+   * Called after {@link #accumulate(int)} was processed and verified that the document has a value for
    * the field. Implementations should update the statistics based on the value of the current document.
    *
    * @param count
@@ -89,18 +89,18 @@ public abstract class DocValuesStats<T> {
     return missing;
   }
 
-  /** The minimum value of the field. Undefined when {@link #count} is zero. */
+  /** The minimum value of the field. Undefined when {@link #count()} is zero. */
   public final T min() {
     return min;
   }
 
-  /** The maximum value of the field. Undefined when {@link #count} is zero. */
+  /** The maximum value of the field. Undefined when {@link #count()} is zero. */
   public final T max() {
     return max;
   }
 
   /** Holds statistics for a numeric DocValues field. */
-  static abstract class NumericDocValuesStats<T extends Number> extends DocValuesStats<T> {
+  public static abstract class NumericDocValuesStats<T extends Number> extends DocValuesStats<T> {
 
     protected double mean = 0.0;
     protected double variance = 0.0;
@@ -205,7 +205,7 @@ public abstract class DocValuesStats<T> {
   }
 
   /** Holds statistics for a sorted-numeric DocValues field. */
-  static abstract class SortedNumericDocValuesStats<T extends Number> extends DocValuesStats<T> {
+  public static abstract class SortedNumericDocValuesStats<T extends Number> extends DocValuesStats<T> {
 
     protected long valuesCount = 0;
     protected double mean = 0.0;