[jOOQ/jOOQ#5695] Fixed outdated javadoc
This commit is contained in:
parent
f3935558eb
commit
f6fc231a02
@ -81,7 +81,7 @@ public interface DeleteLimitStep<R extends Record> extends DeleteReturningStep<R
|
||||
DeleteReturningStep<R> limit(Number numberOfRows);
|
||||
|
||||
/**
|
||||
* Add a <code>LIMIT</code> clause to the query using named parameters.
|
||||
* Add a <code>LIMIT</code> clause to the query.
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -145,7 +145,7 @@ public interface DeleteQuery<R extends Record> extends ConditionProvider, Delete
|
||||
void addLimit(Number numberOfRows);
|
||||
|
||||
/**
|
||||
* Limit the results of this select using named parameters.
|
||||
* Limit the results of this select.
|
||||
*
|
||||
* @param numberOfRows The number of rows to return
|
||||
*/
|
||||
|
||||
@ -154,7 +154,7 @@ public interface SelectLimitAfterOffsetStep<R extends Record> extends SelectForU
|
||||
SelectLimitPercentAfterOffsetStep<R> limit(Number numberOfRows);
|
||||
|
||||
/**
|
||||
* Add a <code>LIMIT</code> clause to the query using named parameters
|
||||
* Add a <code>LIMIT</code> clause to the query.
|
||||
* <p>
|
||||
* Note that some dialects do not support bind values at all in
|
||||
* <code>LIMIT</code> or <code>TOP</code> clauses!
|
||||
|
||||
@ -161,7 +161,7 @@ public interface SelectLimitStep<R extends Record> extends SelectForUpdateStep<R
|
||||
SelectLimitPercentStep<R> limit(Number numberOfRows);
|
||||
|
||||
/**
|
||||
* Add a <code>LIMIT</code> clause to the query using named parameters
|
||||
* Add a <code>LIMIT</code> clause to the query.
|
||||
* <p>
|
||||
* Note that some dialects do not support bind values at all in
|
||||
* <code>LIMIT</code> or <code>TOP</code> clauses!
|
||||
@ -210,7 +210,7 @@ public interface SelectLimitStep<R extends Record> extends SelectForUpdateStep<R
|
||||
SelectWithTiesAfterOffsetStep<R> limit(Number offset, Number numberOfRows);
|
||||
|
||||
/**
|
||||
* Add a <code>LIMIT</code> clause to the query using named parameters
|
||||
* Add a <code>LIMIT</code> clause to the query.
|
||||
* <p>
|
||||
* Note that some dialects do not support bind values at all in
|
||||
* <code>LIMIT</code> or <code>TOP</code> clauses!
|
||||
@ -226,7 +226,7 @@ public interface SelectLimitStep<R extends Record> extends SelectForUpdateStep<R
|
||||
SelectLimitPercentAfterOffsetStep<R> limit(int offset, Field<Integer> numberOfRows);
|
||||
|
||||
/**
|
||||
* Add a <code>LIMIT</code> clause to the query using named parameters
|
||||
* Add a <code>LIMIT</code> clause to the query.
|
||||
* <p>
|
||||
* Note that some dialects do not support bind values at all in
|
||||
* <code>LIMIT</code> or <code>TOP</code> clauses!
|
||||
@ -242,7 +242,7 @@ public interface SelectLimitStep<R extends Record> extends SelectForUpdateStep<R
|
||||
SelectLimitPercentAfterOffsetStep<R> limit(Number offset, Field<? extends Number> numberOfRows);
|
||||
|
||||
/**
|
||||
* Add a <code>LIMIT</code> clause to the query using named parameters
|
||||
* Add a <code>LIMIT</code> clause to the query.
|
||||
* <p>
|
||||
* Note that some dialects do not support bind values at all in
|
||||
* <code>LIMIT</code> or <code>TOP</code> clauses!
|
||||
@ -258,7 +258,7 @@ public interface SelectLimitStep<R extends Record> extends SelectForUpdateStep<R
|
||||
SelectLimitPercentAfterOffsetStep<R> limit(Field<Integer> offset, int numberOfRows);
|
||||
|
||||
/**
|
||||
* Add a <code>LIMIT</code> clause to the query using named parameters
|
||||
* Add a <code>LIMIT</code> clause to the query.
|
||||
* <p>
|
||||
* Note that some dialects do not support bind values at all in
|
||||
* <code>LIMIT</code> or <code>TOP</code> clauses!
|
||||
@ -274,7 +274,7 @@ public interface SelectLimitStep<R extends Record> extends SelectForUpdateStep<R
|
||||
SelectLimitPercentAfterOffsetStep<R> limit(Field<? extends Number> offset, Number numberOfRows);
|
||||
|
||||
/**
|
||||
* Add a <code>LIMIT</code> clause to the query using named parameters
|
||||
* Add a <code>LIMIT</code> clause to the query.
|
||||
* <p>
|
||||
* Note that some dialects do not support bind values at all in
|
||||
* <code>LIMIT</code> or <code>TOP</code> clauses!
|
||||
@ -318,8 +318,7 @@ public interface SelectLimitStep<R extends Record> extends SelectForUpdateStep<R
|
||||
SelectLimitAfterOffsetStep<R> offset(Number offset);
|
||||
|
||||
/**
|
||||
* Add a 0-based <code>OFFSET</code> clause to the query using a named
|
||||
* parameter
|
||||
* Add a 0-based <code>OFFSET</code> clause to the query.
|
||||
* <p>
|
||||
* Offsets are 0-based as they describe the number of rows to <em>skip</em>.
|
||||
* <p>
|
||||
|
||||
@ -161,8 +161,7 @@ public interface SelectOffsetStep<R extends Record> extends SelectForUpdateStep<
|
||||
SelectForUpdateStep<R> offset(Number offset);
|
||||
|
||||
/**
|
||||
* Add a 0-based <code>OFFSET</code> clause to the query using a named
|
||||
* parameter.
|
||||
* Add a 0-based <code>OFFSET</code> clause to the query.
|
||||
* <p>
|
||||
* Offsets are 0-based as they describe the number of rows to <em>skip</em>.
|
||||
* <p>
|
||||
|
||||
@ -721,8 +721,7 @@ public interface SelectQuery<R extends Record> extends Select<R>, ConditionProvi
|
||||
void addOffset(Number offset);
|
||||
|
||||
/**
|
||||
* Add a 0-based <code>OFFSET</code> clause to the query using a named
|
||||
* parameter.
|
||||
* Add a 0-based <code>OFFSET</code> clause to the query.
|
||||
* <p>
|
||||
* Offsets are 0-based as they describe the number of rows to <em>skip</em>.
|
||||
* <p>
|
||||
@ -755,7 +754,7 @@ public interface SelectQuery<R extends Record> extends Select<R>, ConditionProvi
|
||||
void addLimit(Number numberOfRows);
|
||||
|
||||
/**
|
||||
* Limit the results of this select using named parameters.
|
||||
* Limit the results of this select.
|
||||
* <p>
|
||||
* Note that some dialects do not support bind values at all in
|
||||
* <code>LIMIT</code> or <code>TOP</code> clauses!
|
||||
@ -844,7 +843,7 @@ public interface SelectQuery<R extends Record> extends Select<R>, ConditionProvi
|
||||
void addLimit(Field<? extends Number> offset, Number numberOfRows);
|
||||
|
||||
/**
|
||||
* Limit the results of this select using named parameters.
|
||||
* Limit the results of this select.
|
||||
* <p>
|
||||
* Note that some dialects do not support bind values at all in
|
||||
* <code>LIMIT</code> or <code>TOP</code> clauses!
|
||||
@ -862,7 +861,7 @@ public interface SelectQuery<R extends Record> extends Select<R>, ConditionProvi
|
||||
void addLimit(int offset, Field<Integer> numberOfRows);
|
||||
|
||||
/**
|
||||
* Limit the results of this select using named parameters.
|
||||
* Limit the results of this select.
|
||||
* <p>
|
||||
* Note that some dialects do not support bind values at all in
|
||||
* <code>LIMIT</code> or <code>TOP</code> clauses!
|
||||
@ -880,7 +879,7 @@ public interface SelectQuery<R extends Record> extends Select<R>, ConditionProvi
|
||||
void addLimit(Number offset, Field<? extends Number> numberOfRows);
|
||||
|
||||
/**
|
||||
* Limit the results of this select using named parameters.
|
||||
* Limit the results of this select.
|
||||
* <p>
|
||||
* Note that some dialects do not support bind values at all in
|
||||
* <code>LIMIT</code> or <code>TOP</code> clauses!
|
||||
|
||||
@ -147,7 +147,7 @@ public interface SelectSeekLimitStep<R extends Record> extends SelectForUpdateSt
|
||||
SelectForUpdateStep<R> limit(Number numberOfRows);
|
||||
|
||||
/**
|
||||
* Add a <code>LIMIT</code> clause to the query using named parameters.
|
||||
* Add a <code>LIMIT</code> clause to the query.
|
||||
* <p>
|
||||
* Note that some dialects do not support bind values at all in
|
||||
* <code>LIMIT</code> or <code>TOP</code> clauses!
|
||||
|
||||
@ -83,7 +83,7 @@ public interface UpdateLimitStep<R extends Record> extends UpdateReturningStep<R
|
||||
UpdateReturningStep<R> limit(Number numberOfRows);
|
||||
|
||||
/**
|
||||
* Add a <code>LIMIT</code> clause to the query using named parameters.
|
||||
* Add a <code>LIMIT</code> clause to the query.
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
@Support
|
||||
|
||||
@ -433,7 +433,7 @@ public interface UpdateQuery<R extends Record> extends StoreQuery<R>, ConditionP
|
||||
void addLimit(Number numberOfRows);
|
||||
|
||||
/**
|
||||
* Limit the results of this select using named parameters.
|
||||
* Limit the results of this select.
|
||||
*
|
||||
* @param numberOfRows The number of rows to return
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user