From 1e13d14c6624c2940729031d74901adcbbec562a Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Thu, 8 May 2014 16:21:12 +0200 Subject: [PATCH] Javadoc Fixes --- jOOQ/src/main/java/org/jooq/SelectQuery.java | 64 ++++++++++---------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/SelectQuery.java b/jOOQ/src/main/java/org/jooq/SelectQuery.java index 8ba9c43c9e..5aabbe5bfc 100644 --- a/jOOQ/src/main/java/org/jooq/SelectQuery.java +++ b/jOOQ/src/main/java/org/jooq/SelectQuery.java @@ -72,7 +72,7 @@ import org.jooq.exception.DataAccessException; public interface SelectQuery extends Select, ConditionProvider { /** - * Add a list of select fields + * Add a list of select fields. * * @param fields */ @@ -80,7 +80,7 @@ public interface SelectQuery extends Select, ConditionProvi void addSelect(Field... fields); /** - * Add a list of select fields + * Add a list of select fields. * * @param fields */ @@ -88,13 +88,13 @@ public interface SelectQuery extends Select, ConditionProvi void addSelect(Collection> fields); /** - * Add "distinct" keyword to the select clause + * Add "distinct" keyword to the select clause. */ @Support void setDistinct(boolean distinct); /** - * Add tables to the table product + * Add tables to the table product. * * @param from The added tables */ @@ -102,7 +102,7 @@ public interface SelectQuery extends Select, ConditionProvi void addFrom(TableLike... from); /** - * Add tables to the table product + * Add tables to the table product. * * @param from The added tables */ @@ -110,7 +110,7 @@ public interface SelectQuery extends Select, ConditionProvi void addFrom(Collection> from); /** - * Joins the existing table product to a new table using a condition + * Joins the existing table product to a new table using a condition. * * @param table The joined table * @param conditions The joining conditions @@ -119,7 +119,7 @@ public interface SelectQuery extends Select, ConditionProvi void addJoin(TableLike table, Condition... conditions); /** - * Joins the existing table product to a new table using a condition + * Joins the existing table product to a new table using a condition. * * @param table The joined table * @param type The type of join @@ -130,7 +130,7 @@ public interface SelectQuery extends Select, ConditionProvi /* [pro] xx xxx - x xxxxx xxx xxxxxxxx xxxxx xxxxxxx xx x xxx xxxxx xxxxx x xxxxxxxxx + x xxxxx xxx xxxxxxxx xxxxx xxxxxxx xx x xxx xxxxx xxxxx x xxxxxxxxxx x xxx x xxxx xxxx x xxxxxxxxxxxxxxx xxxxxxxxx xxxxxx xx xxx xxxxx xxxx xxxx xx x x xxxxxxxxxxx xxxxxxxxxxx xxxxxxxxxxx @@ -147,7 +147,7 @@ public interface SelectQuery extends Select, ConditionProvi xx [/pro] */ /** * Joins the existing table product to a new table with a USING - * clause + * clause. *

* If this is not supported by your RDBMS, then jOOQ will try to simulate * this behaviour using the information provided in this query. @@ -160,7 +160,7 @@ public interface SelectQuery extends Select, ConditionProvi /** * Joins the existing table product to a new table with a USING - * clause + * clause. *

* If this is not supported by your RDBMS, then jOOQ will try to simulate * this behaviour using the information provided in this query. @@ -173,7 +173,7 @@ public interface SelectQuery extends Select, ConditionProvi void addJoinUsing(TableLike table, JoinType type, Collection> fields); /** - * Joins the existing table product to a new table using a foreign key + * Joins the existing table product to a new table using a foreign key. * * @param table The joined table * @param type The type of join @@ -185,7 +185,7 @@ public interface SelectQuery extends Select, ConditionProvi void addJoinOnKey(TableLike table, JoinType type) throws DataAccessException; /** - * Joins the existing table product to a new table using a foreign key + * Joins the existing table product to a new table using a foreign key. * * @param table The joined table * @param type The type of join @@ -198,7 +198,7 @@ public interface SelectQuery extends Select, ConditionProvi void addJoinOnKey(TableLike table, JoinType type, TableField... keyFields) throws DataAccessException; /** - * Joins the existing table product to a new table using a foreign key + * Joins the existing table product to a new table using a foreign key. * * @param table The joined table * @param type The type of join @@ -209,7 +209,7 @@ public interface SelectQuery extends Select, ConditionProvi void addJoinOnKey(TableLike table, JoinType type, ForeignKey key); /** - * Adds grouping fields + * Adds grouping fields. *

* Calling this with an empty argument list will result in an empty * GROUP BY () clause being rendered. @@ -220,7 +220,7 @@ public interface SelectQuery extends Select, ConditionProvi void addGroupBy(GroupField... fields); /** - * Adds grouping fields + * Adds grouping fields. *

* Calling this with an empty argument list will result in an empty * GROUP BY () clause being rendered. @@ -250,7 +250,7 @@ public interface SelectQuery extends Select, ConditionProvi /** * Adds new conditions to the having clause of query, connecting them to - * existing conditions with the provided operator + * existing conditions with the provided operator. * * @param operator The operator to use to add the conditions to the existing * conditions @@ -261,7 +261,7 @@ public interface SelectQuery extends Select, ConditionProvi /** * Adds new conditions to the having clause of query, connecting them to - * existing conditions with the provided operator + * existing conditions with the provided operator. * * @param operator The operator to use to add the conditions to the existing * conditions @@ -350,21 +350,21 @@ public interface SelectQuery extends Select, ConditionProvi void addOption(String option); /** - * Add an Oracle-specific CONNECT BY clause to the query + * Add an Oracle-specific CONNECT BY clause to the query. */ @Support({ CUBRID }) void addConnectBy(Condition condition); /** * Add an Oracle-specific CONNECT BY NOCYCLE clause to the - * query + * query. */ @Support({ CUBRID }) void addConnectByNoCycle(Condition condition); /** * Add an Oracle-specific START WITH clause to the query's - * CONNECT BY clause + * CONNECT BY clause. */ @Support({ CUBRID }) void setConnectByStartWith(Condition condition); @@ -402,7 +402,7 @@ public interface SelectQuery extends Select, ConditionProvi void addConditions(Operator operator, Collection conditions); /** - * Adds ordering fields, ordering by the default sort order + * Adds ordering fields, ordering by the default sort order. * * @param fields The ordering fields */ @@ -410,7 +410,7 @@ public interface SelectQuery extends Select, ConditionProvi void addOrderBy(Field... fields); /** - * Adds ordering fields + * Adds ordering fields. * * @param fields The ordering fields */ @@ -418,7 +418,7 @@ public interface SelectQuery extends Select, ConditionProvi void addOrderBy(SortField... fields); /** - * Adds ordering fields + * Adds ordering fields. * * @param fields The ordering fields */ @@ -426,7 +426,7 @@ public interface SelectQuery extends Select, ConditionProvi void addOrderBy(Collection> fields); /** - * Adds ordering fields + * Adds ordering fields. *

* Indexes start at 1 in SQL! *

@@ -486,7 +486,7 @@ public interface SelectQuery extends Select, ConditionProvi void addSeekBefore(Collection> fields); /** - * Limit the results of this select + * Limit the results of this select. *

* This is the same as calling {@link #addLimit(int, int)} with offset = 0 * @@ -496,7 +496,7 @@ public interface SelectQuery extends Select, ConditionProvi void addLimit(int numberOfRows); /** - * Limit the results of this select using named parameters + * Limit the results of this select using named parameters. *

* Note that some dialects do not support bind values at all in * LIMIT or TOP clauses! @@ -515,7 +515,7 @@ public interface SelectQuery extends Select, ConditionProvi void addLimit(Param numberOfRows); /** - * Limit the results of this select + * Limit the results of this select. *

* Note that some dialects do not support bind values at all in * LIMIT or TOP clauses! @@ -532,7 +532,7 @@ public interface SelectQuery extends Select, ConditionProvi void addLimit(int offset, int numberOfRows); /** - * Limit the results of this select + * Limit the results of this select. *

* Note that some dialects do not support bind values at all in * LIMIT or TOP clauses! @@ -550,7 +550,7 @@ public interface SelectQuery extends Select, ConditionProvi void addLimit(Param offset, int numberOfRows); /** - * Limit the results of this select using named parameters + * Limit the results of this select using named parameters. *

* Note that some dialects do not support bind values at all in * LIMIT or TOP clauses! @@ -568,7 +568,7 @@ public interface SelectQuery extends Select, ConditionProvi void addLimit(int offset, Param numberOfRows); /** - * Limit the results of this select using named parameters + * Limit the results of this select using named parameters. *

* Note that some dialects do not support bind values at all in * LIMIT or TOP clauses! @@ -586,7 +586,7 @@ public interface SelectQuery extends Select, ConditionProvi void addLimit(Param offset, Param numberOfRows); /** - * Sets the "FOR UPDATE" flag onto the query + * Sets the "FOR UPDATE" flag onto the query. *

*

Native implementation
*

@@ -771,7 +771,7 @@ public interface SelectQuery extends Select, ConditionProvi xx [/pro] */ /** - * Sets the "FOR SHARE" flag onto the query + * Sets the "FOR SHARE" flag onto the query. *

* This has been observed to be supported by any of these dialects: *