You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by mb...@apache.org on 2020/02/20 19:11:58 UTC

[db-jdo] branch master updated: Fixed javadoc warnings

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

mbo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/db-jdo.git


The following commit(s) were added to refs/heads/master by this push:
     new dfda722  Fixed javadoc warnings
     new 460738f  Merge branch 'master' of https://gitbox.apache.org/repos/asf/db-jdo
dfda722 is described below

commit dfda722b7934d06acf1b843309cb1bf2a1ea3eb8
Author: Michael Bouschen <mb...@apache.org>
AuthorDate: Thu Feb 20 20:11:35 2020 +0100

    Fixed javadoc warnings
---
 api/src/main/java/javax/jdo/JDOQLTypedQuery.java | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/api/src/main/java/javax/jdo/JDOQLTypedQuery.java b/api/src/main/java/javax/jdo/JDOQLTypedQuery.java
index d91f85e..65fbc7b 100644
--- a/api/src/main/java/javax/jdo/JDOQLTypedQuery.java
+++ b/api/src/main/java/javax/jdo/JDOQLTypedQuery.java
@@ -175,7 +175,7 @@ public interface JDOQLTypedQuery<T> extends Serializable, Closeable {
      * @param name Name of the parameter
      * @param elementType Element type of the list parameter
      * @param <E> Element type for the list parameter
-     * @return
+     * @return Expression for the parameter
      */
     @SuppressWarnings("unchecked")
     default <E> ListExpression<List<E>, E> listParameter(String name, Class<E> elementType) {
@@ -225,6 +225,7 @@ public interface JDOQLTypedQuery<T> extends Serializable, Closeable {
      * @param cond The if condition
      * @param thenValueExpr Expression for value to return when the if expression is met
      * @param elseValueExpr Expression for value to return when the if expression is not met
+     * @param <V> type for the IfThenElseExpression
      * @return The IfThenElse expression
      */
     <V> IfThenElseExpression<V> ifThenElse(Class<V> type, BooleanExpression cond,
@@ -235,6 +236,7 @@ public interface JDOQLTypedQuery<T> extends Serializable, Closeable {
      * @param cond The if condition
      * @param thenValue Value to return when the if expression is met
      * @param elseValueExpr Expression to return when the if expression is not met
+     * @param <V> type for the IfThenElseExpression
      * @return The IfThenElse expression
      */
     <V> IfThenElseExpression<V> ifThenElse(BooleanExpression cond, V thenValue, Expression<V> elseValueExpr);
@@ -244,6 +246,7 @@ public interface JDOQLTypedQuery<T> extends Serializable, Closeable {
      * @param cond The if condition
      * @param thenValueExpr Expression to return when the if expression is met
      * @param elseValue Value to return when the if expression is not met
+     * @param <V> type for the IfThenElseExpression
      * @return The IfThenElse expression
      */
     <V> IfThenElseExpression<V> ifThenElse(BooleanExpression cond, Expression<V> thenValueExpr, V elseValue);
@@ -253,6 +256,7 @@ public interface JDOQLTypedQuery<T> extends Serializable, Closeable {
      * @param cond The if condition
      * @param thenValue Value to return when the if expression is met
      * @param elseValue Value to return when the if expression is not met
+     * @param <V> type for the IfThenElseExpression
      * @return The IfThenElse expression
      */
     <V> IfThenElseExpression<V> ifThenElse(BooleanExpression cond, V thenValue, V elseValue);
@@ -262,8 +266,8 @@ public interface JDOQLTypedQuery<T> extends Serializable, Closeable {
      * @param type The type returned by the IfElse.
      * @param cond The if condition
      * @param thenValueExpr Expression for value to return when the if expression is met
-     * @param <V>
-     * @return
+     * @param <V> type for the IfThenElseExpression
+     * @return The IfThenElse expression
      */
     <V> IfThenElseExpression<V> ifThen(Class<V> type, BooleanExpression cond, Expression<V> thenValueExpr);
 
@@ -271,8 +275,8 @@ public interface JDOQLTypedQuery<T> extends Serializable, Closeable {
      * Method to return an "IF (...) ... ELSE ..." expression for use in this query.
      * @param cond The if condition
      * @param thenValue Value to return when the if expression is met
-     * @param <V>
-     * @return
+     * @param <V> type for the IfThenElseExpression
+     * @return The IfThenElse expression
      */
     <V> IfThenElseExpression<V> ifThen(BooleanExpression cond, V thenValue);