You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by iv...@apache.org on 2019/02/22 10:04:56 UTC

[lucene-solr] branch master updated: LUCENE-8699: Add lucene internal tag to PointValue interface and fix some typos

This is an automated email from the ASF dual-hosted git repository.

ivera pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new 9b8a4a9  LUCENE-8699: Add lucene internal tag to PointValue interface and fix some typos
9b8a4a9 is described below

commit 9b8a4a9e6e4aa640faa6a9e35fab2f61b126dc07
Author: iverase <iv...@apache.org>
AuthorDate: Fri Feb 22 11:04:46 2019 +0100

    LUCENE-8699: Add lucene internal tag to PointValue interface
    and fix some typos
---
 .../src/java/org/apache/lucene/util/bkd/PointValue.java     | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/lucene/core/src/java/org/apache/lucene/util/bkd/PointValue.java b/lucene/core/src/java/org/apache/lucene/util/bkd/PointValue.java
index 79c3efa..2850627 100644
--- a/lucene/core/src/java/org/apache/lucene/util/bkd/PointValue.java
+++ b/lucene/core/src/java/org/apache/lucene/util/bkd/PointValue.java
@@ -19,18 +19,19 @@ package org.apache.lucene.util.bkd;
 
 import org.apache.lucene.util.BytesRef;
 
-/**
- * Represent a dimensional point value written in the BKD tree.
- */
+/** Represents a dimensional point value written in the BKD tree.
+ *
+ * @lucene.internal
+ **/
 public interface PointValue {
 
-  /** Return the packed values for the dimensions */
+  /** Returns the packed values for the dimensions */
   BytesRef packedValue();
 
-  /** The document id */
+  /** Returns the document id */
   int docID();
 
-  /** The byte representation of the document id */
+  /** Returns the byte representation of the document id */
   BytesRef docIDBytes();
 
 }