[#3345] Deprecate org.jooq.api.annotation.State and Transition annotations
This commit is contained in:
parent
07feb77b3a
commit
2b137aebfb
@ -49,9 +49,6 @@ import static org.jooq.SQLDialect.POSTGRES;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
|
||||
/**
|
||||
* An aggregate function is a special field that is usually used in a
|
||||
|
||||
@ -49,15 +49,11 @@ import static org.jooq.SQLDialect.POSTGRES;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* A {@link Query} that can alter sequences.
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface AlterSequenceRestartStep<T extends Number> {
|
||||
|
||||
/**
|
||||
|
||||
@ -56,15 +56,12 @@ import static org.jooq.SQLDialect.SQLITE;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* The step in the <code>ALTER TABLE</code> DSL used to <code>ALTER</code>
|
||||
* columns.
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface AlterTableAlterStep<T> {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* The step in the <code>ALTER TABLE</code> DSL used to <code>DROP</code>
|
||||
@ -48,7 +47,6 @@ import org.jooq.api.annotation.State;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface AlterTableDropStep extends AlterTableFinalStep {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,14 +40,12 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* The step in the <code>ALTER TABLE</code> where the action can be decided.
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface AlterTableStep {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,8 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* An intermediate DSL type for the construction of a <code>BETWEEN</code>
|
||||
@ -49,7 +47,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface BetweenAndStep<T> {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* A {@link Query} that can delete data in the database.
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
|
||||
@ -57,7 +56,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface DeleteConditionStep<R extends Record> extends DeleteFinalStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Delete}'s DSL API.
|
||||
@ -55,7 +54,6 @@ import org.jooq.api.annotation.State;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface DeleteFinalStep<R extends Record> extends Delete<R> {
|
||||
|
||||
}
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
/**
|
||||
@ -59,7 +57,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface DeleteWhereStep<R extends Record> extends DeleteFinalStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
/**
|
||||
@ -49,7 +48,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface DivideByOnConditionStep extends DivideByReturningStep {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,8 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
|
||||
|
||||
@ -42,9 +42,6 @@ package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* An intermediate type for the construction of a relational division
|
||||
*
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* The step in the <code>DROP TABLE</code> DSL used to specify <code>DROP</code>
|
||||
@ -48,7 +47,6 @@ import org.jooq.api.annotation.State;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface DropTableStep extends DropTableFinalStep {
|
||||
|
||||
/**
|
||||
|
||||
@ -62,8 +62,6 @@ import java.math.BigDecimal;
|
||||
import java.util.Collection;
|
||||
import java.util.Map;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.types.Interval;
|
||||
|
||||
@ -53,8 +53,6 @@ import static org.jooq.SQLDialect.POSTGRES;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
|
||||
@ -64,7 +62,6 @@ import org.jooq.impl.DSL;
|
||||
* @author Lukas Eder
|
||||
* @see DSL#listAgg(Field)
|
||||
*/
|
||||
@State
|
||||
public interface GroupConcatOrderByStep extends GroupConcatSeparatorStep {
|
||||
|
||||
/**
|
||||
|
||||
@ -52,8 +52,6 @@ import static org.jooq.SQLDialect.POSTGRES;
|
||||
import static org.jooq.SQLDialect.SQLITE;
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
/**
|
||||
@ -62,7 +60,6 @@ import org.jooq.impl.DSL;
|
||||
* @author Lukas Eder
|
||||
* @see DSL#listAgg(Field)
|
||||
*/
|
||||
@State
|
||||
public interface GroupConcatSeparatorStep extends AggregateFunction<String> {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* A <code>QueryPart</code> to be used exclusively in <code>GROUP BY</code>
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* A {@link Query} that can merge data in the database.
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Merge}'s DSL API.
|
||||
@ -61,7 +60,6 @@ import org.jooq.api.annotation.State;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeFinalStep<R extends Record> extends Merge<R> {
|
||||
|
||||
}
|
||||
|
||||
@ -50,9 +50,6 @@ import static org.jooq.SQLDialect.HSQLDB;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the H2-specific variant of the {@link Merge}'s DSL API.
|
||||
* <p>
|
||||
@ -67,7 +64,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeKeyStepN<R extends Record> extends MergeValuesStepN<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -43,9 +43,6 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.CUBRID;
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Merge}'s DSL API.
|
||||
* <p>
|
||||
@ -65,7 +62,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeMatchedDeleteStep<R extends Record> extends MergeNotMatchedStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Merge}'s DSL API.
|
||||
@ -61,7 +60,6 @@ import org.jooq.api.annotation.State;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeMatchedSetMoreStep<R extends Record>
|
||||
extends
|
||||
MergeMatchedSetStep<R>,
|
||||
|
||||
@ -49,9 +49,6 @@ import static org.jooq.SQLDialect.HSQLDB;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Merge}'s DSL API.
|
||||
* <p>
|
||||
@ -71,7 +68,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeMatchedSetStep<R extends Record> {
|
||||
|
||||
/**
|
||||
|
||||
@ -47,9 +47,6 @@ import static org.jooq.SQLDialect.HSQLDB;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Merge}'s DSL API.
|
||||
* <p>
|
||||
@ -69,7 +66,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeMatchedStep<R extends Record> extends MergeNotMatchedStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -43,9 +43,6 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.CUBRID;
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Merge}'s DSL API.
|
||||
* <p>
|
||||
@ -65,7 +62,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeMatchedWhereStep<R extends Record> extends MergeNotMatchedStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Merge}'s DSL API.
|
||||
@ -61,7 +60,6 @@ import org.jooq.api.annotation.State;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeNotMatchedSetMoreStep<R extends Record>
|
||||
extends
|
||||
MergeNotMatchedSetStep<R>,
|
||||
|
||||
@ -49,9 +49,6 @@ import static org.jooq.SQLDialect.HSQLDB;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Merge}'s DSL API.
|
||||
* <p>
|
||||
@ -71,7 +68,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeNotMatchedSetStep<R extends Record> {
|
||||
|
||||
/**
|
||||
|
||||
@ -47,9 +47,6 @@ import static org.jooq.SQLDialect.HSQLDB;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -74,7 +71,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface MergeNotMatchedStep<R extends Record> extends MergeFinalStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -49,9 +49,6 @@ import static org.jooq.SQLDialect.HSQLDB;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Merge}'s DSL API.
|
||||
* <p>
|
||||
@ -71,7 +68,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeNotMatchedValuesStepN<R extends Record> {
|
||||
|
||||
/**
|
||||
|
||||
@ -43,9 +43,6 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.CUBRID;
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Merge}'s DSL API.
|
||||
* <p>
|
||||
@ -65,7 +62,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeNotMatchedWhereStep<R extends Record> extends MergeFinalStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -47,7 +47,6 @@ import static org.jooq.SQLDialect.HSQLDB;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
/**
|
||||
@ -69,7 +68,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeOnConditionStep<R extends Record> extends MergeMatchedStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -47,8 +47,6 @@ import static org.jooq.SQLDialect.HSQLDB;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
/**
|
||||
@ -70,7 +68,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeOnStep<R extends Record> {
|
||||
|
||||
/**
|
||||
|
||||
@ -47,9 +47,6 @@ import static org.jooq.SQLDialect.HSQLDB;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Merge}'s DSL API.
|
||||
* <p>
|
||||
@ -69,7 +66,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeUsingStep<R extends Record> extends MergeKeyStepN<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -50,9 +50,6 @@ import static org.jooq.SQLDialect.HSQLDB;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the H2-specific variant of the {@link Merge}'s DSL API.
|
||||
* <p>
|
||||
@ -67,7 +64,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface MergeValuesStepN<R extends Record> {
|
||||
|
||||
/**
|
||||
|
||||
@ -53,9 +53,6 @@ import static org.jooq.SQLDialect.POSTGRES;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* An ordered aggregate function.
|
||||
* <p>
|
||||
@ -79,7 +76,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface OrderedAggregateFunction<T> {
|
||||
|
||||
/**
|
||||
|
||||
@ -43,9 +43,6 @@ package org.jooq;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the Oracle <code>PIVOT</code> clause DSL API, pivoting
|
||||
* {@link Table} objects to new tables.
|
||||
|
||||
@ -45,9 +45,6 @@ package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the Oracle <code>PIVOT</code> clause DSL API, pivoting
|
||||
* {@link Table} objects to new tables.
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* A participant of a quantified comparison predicate
|
||||
|
||||
@ -46,7 +46,6 @@ import java.sql.Statement;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.conf.ParamType;
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.conf.StatementType;
|
||||
|
||||
@ -48,7 +48,6 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.ExecutorService;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.exception.DataAccessException;
|
||||
import org.jooq.exception.DataTypeException;
|
||||
@ -72,7 +71,6 @@ import org.jooq.impl.DefaultRecordMapper;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface ResultQuery<R extends Record> extends Query {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,8 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* A model type for a row value expression.
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row1<T1> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row2<T1, T2> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row3<T1, T2, T3> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row4<T1, T2, T3, T4> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row5<T1, T2, T3, T4, T5> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row6<T1, T2, T3, T4, T5, T6> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row7<T1, T2, T3, T4, T5, T6, T7> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row8<T1, T2, T3, T4, T5, T6, T7, T8> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface Row9<T1, T2, T3, T4, T5, T6, T7, T8, T9> extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -40,9 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.Comparator;
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
@ -57,7 +54,6 @@ import javax.annotation.Generated;
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@Generated("This class was generated using jOOQ-tools")
|
||||
@State
|
||||
public interface RowN extends Row {
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
@ -42,7 +42,6 @@ package org.jooq;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.exception.DataAccessException;
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
|
||||
@ -86,7 +85,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectConditionStep<R extends Record> extends SelectConnectByStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -43,7 +43,6 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.CUBRID;
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
/**
|
||||
@ -88,7 +87,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectConnectByConditionStep<R extends Record> extends SelectStartWithStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -43,8 +43,6 @@ package org.jooq;
|
||||
import static org.jooq.SQLDialect.CUBRID;
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
/**
|
||||
@ -89,7 +87,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectConnectByStep<R extends Record> extends SelectGroupByStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
@ -84,7 +83,6 @@ import org.jooq.api.annotation.State;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectFinalStep<R extends Record> extends Select<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -52,9 +52,6 @@ import static org.jooq.SQLDialect.POSTGRES;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
@ -97,7 +94,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectForUpdateOfStep<R extends Record> extends SelectForUpdateWaitStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -55,9 +55,6 @@ import static org.jooq.SQLDialect.POSTGRES;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
@ -100,7 +97,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectForUpdateStep<R extends Record> extends SelectOptionStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -43,9 +43,6 @@ package org.jooq;
|
||||
// ...
|
||||
import static org.jooq.SQLDialect.POSTGRES;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
@ -88,7 +85,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectForUpdateWaitStep<R extends Record> extends SelectOptionStep<R> {
|
||||
|
||||
/* [pro] xx
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
/**
|
||||
@ -88,7 +86,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectFromStep<R extends Record> extends SelectWhereStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -42,9 +42,6 @@ package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
@ -87,7 +84,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectGroupByStep<R extends Record> extends SelectHavingStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
|
||||
@ -86,7 +85,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectHavingConditionStep<R extends Record> extends SelectWindowStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
/**
|
||||
@ -88,7 +86,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectHavingStep<R extends Record> extends SelectWindowStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -44,8 +44,6 @@ package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
@ -88,7 +86,6 @@ import org.jooq.api.annotation.State;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectJoinPartitionByStep<R extends Record> extends SelectOnStep<R> {
|
||||
|
||||
/* [pro] xx
|
||||
|
||||
@ -58,7 +58,6 @@ import static org.jooq.SQLDialect.SQLITE;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
/**
|
||||
@ -103,7 +102,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectJoinStep<R extends Record> extends SelectWhereStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -55,9 +55,6 @@ import static org.jooq.SQLDialect.SQLITE;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
@ -100,7 +97,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectLimitStep<R extends Record> extends SelectForUpdateStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -55,9 +55,6 @@ import static org.jooq.SQLDialect.SQLITE;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
@ -100,7 +97,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectOffsetStep<R extends Record> extends SelectForUpdateStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
|
||||
@ -86,7 +85,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectOnConditionStep<R extends Record> extends SelectJoinStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
import org.jooq.exception.DataAccessException;
|
||||
import org.jooq.impl.DSL;
|
||||
|
||||
@ -89,7 +87,6 @@ import org.jooq.impl.DSL;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectOnStep<R extends Record> {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
@ -84,7 +83,6 @@ import org.jooq.api.annotation.State;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectOptionStep<R extends Record> extends SelectFinalStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -40,7 +40,6 @@
|
||||
*/
|
||||
package org.jooq;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
@ -84,7 +83,6 @@ import org.jooq.api.annotation.State;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectOptionalOnStep<R extends Record> extends SelectJoinStep<R>, SelectJoinPartitionByStep<R> {
|
||||
|
||||
}
|
||||
|
||||
@ -47,9 +47,6 @@ import java.util.Collection;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
@ -92,7 +89,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectOrderByStep<R extends Record> extends SelectLimitStep<R> {
|
||||
|
||||
// [jooq-tools] START [order-by-field-array]
|
||||
|
||||
@ -54,9 +54,6 @@ import static org.jooq.SQLDialect.SQLITE;
|
||||
// ...
|
||||
// ...
|
||||
|
||||
import org.jooq.api.annotation.State;
|
||||
import org.jooq.api.annotation.Transition;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
@ -99,7 +96,6 @@ import org.jooq.api.annotation.Transition;
|
||||
*
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
@State
|
||||
public interface SelectSeekLimitStep<R extends Record> extends SelectForUpdateStep<R> {
|
||||
|
||||
/**
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
@ -42,8 +42,6 @@ package org.jooq;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import org.jooq.Record;
|
||||
|
||||
/**
|
||||
* This type is used for the {@link Select}'s DSL API when selecting generic
|
||||
* {@link Record} types.
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user