org.jooq.Row18 Maven / Gradle / Ivy
/**
* Copyright (c) 2009-2014, Data Geekery GmbH (http://www.datageekery.com)
* All rights reserved.
*
* This work is dual-licensed
* - under the Apache Software License 2.0 (the "ASL")
* - under the jOOQ License and Maintenance Agreement (the "jOOQ License")
* =============================================================================
* You may choose which license applies to you:
*
* - If you're using this work with Open Source databases, you may choose
* either ASL or jOOQ License.
* - If you're using this work with at least one commercial database, you must
* choose jOOQ License
*
* For more information, please visit http://www.jooq.org/licenses
*
* Apache Software License 2.0:
* -----------------------------------------------------------------------------
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* jOOQ License and Maintenance Agreement:
* -----------------------------------------------------------------------------
* Data Geekery grants the Customer the non-exclusive, timely limited and
* non-transferable license to install and use the Software under the terms of
* the jOOQ License and Maintenance Agreement.
*
* This library is distributed with a LIMITED WARRANTY. See the jOOQ License
* and Maintenance Agreement for more details: http://www.jooq.org/licensing
*/
package org.jooq;
// ...
import static org.jooq.SQLDialect.CUBRID;
// ...
import static org.jooq.SQLDialect.DERBY;
import static org.jooq.SQLDialect.FIREBIRD;
import static org.jooq.SQLDialect.H2;
import static org.jooq.SQLDialect.HSQLDB;
// ...
import static org.jooq.SQLDialect.MARIADB;
import static org.jooq.SQLDialect.MYSQL;
// ...
import static org.jooq.SQLDialect.POSTGRES;
// ...
// ...
import org.jooq.Comparator;
import org.jooq.impl.DSL;
import java.util.Collection;
import javax.annotation.Generated;
/**
* A model type for a row value expression with degree 18
.
*
* Note: Not all databases support row value expressions, but many row value
* expression operations can be emulated on all databases. See relevant row
* value expression method Javadocs for details.
*
* @author Lukas Eder
*/
@Generated("This class was generated using jOOQ-tools")
public interface Row18 extends Row {
// ------------------------------------------------------------------------
// Field accessors
// ------------------------------------------------------------------------
/**
* Get the first field.
*/
Field field1();
/**
* Get the second field.
*/
Field field2();
/**
* Get the third field.
*/
Field field3();
/**
* Get the fourth field.
*/
Field field4();
/**
* Get the fifth field.
*/
Field field5();
/**
* Get the sixth field.
*/
Field field6();
/**
* Get the seventh field.
*/
Field field7();
/**
* Get the eighth field.
*/
Field field8();
/**
* Get the ninth field.
*/
Field field9();
/**
* Get the tenth field.
*/
Field field10();
/**
* Get the eleventh field.
*/
Field field11();
/**
* Get the twelfth field.
*/
Field field12();
/**
* Get the thirteenth field.
*/
Field field13();
/**
* Get the fourteenth field.
*/
Field field14();
/**
* Get the fifteenth field.
*/
Field field15();
/**
* Get the sixteenth field.
*/
Field field16();
/**
* Get the seventeenth field.
*/
Field field17();
/**
* Get the eighteenth field.
*/
Field field18();
// ------------------------------------------------------------------------
// Generic comparison predicates
// ------------------------------------------------------------------------
/**
* Compare this row value expression with another row value expression
* using a dynamic comparator.
*
* See the explicit comparison methods for details. Note, not all
* {@link Comparator} types are supported
*
* @see #equal(Row18)
* @see #notEqual(Row18)
* @see #lessThan(Row18)
* @see #lessOrEqual(Row18)
* @see #greaterThan(Row18)
* @see #greaterOrEqual(Row18)
*/
@Support
Condition compare(Comparator comparator, Row18 row);
/**
* Compare this row value expression with a record
* using a dynamic comparator.
*
* See the explicit comparison methods for details. Note, not all
* {@link Comparator} types are supported
*
* @see #equal(Record18)
* @see #notEqual(Record18)
* @see #lessThan(Record18)
* @see #lessOrEqual(Record18)
* @see #greaterThan(Record18)
* @see #greaterOrEqual(Record18)
*/
@Support
Condition compare(Comparator comparator, Record18 record);
/**
* Compare this row value expression with another row value expression
* using a dynamic comparator.
*
* See the explicit comparison methods for details. Note, not all
* {@link Comparator} types are supported
*
* @see #equal(Row18)
* @see #notEqual(Row18)
* @see #lessThan(Row18)
* @see #lessOrEqual(Row18)
* @see #greaterThan(Row18)
* @see #greaterOrEqual(Row18)
*/
@Support
Condition compare(Comparator comparator, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9, T10 t10, T11 t11, T12 t12, T13 t13, T14 t14, T15 t15, T16 t16, T17 t17, T18 t18);
/**
* Compare this row value expression with another row value expression
* using a dynamic comparator.
*
* See the explicit comparison methods for details. Note, not all
* {@link Comparator} types are supported
*
* @see #equal(Row18)
* @see #notEqual(Row18)
* @see #lessThan(Row18)
* @see #lessOrEqual(Row18)
* @see #greaterThan(Row18)
* @see #greaterOrEqual(Row18)
*/
@Support
Condition compare(Comparator comparator, Field t1, Field t2, Field t3, Field t4, Field t5, Field t6, Field t7, Field t8, Field t9, Field t10, Field t11, Field t12, Field t13, Field t14, Field t15, Field t16, Field t17, Field t18);
/**
* Compare this row value expression with a subselect
* using a dynamic comparator.
*
* See the explicit comparison methods for details. Note, not all
* {@link Comparator} types are supported
*
* @see #equal(Select)
* @see #notEqual(Select)
* @see #lessThan(Select)
* @see #lessOrEqual(Select)
* @see #greaterThan(Select)
* @see #greaterOrEqual(Select)
*/
@Support
Condition compare(Comparator comparator, Select extends Record18> select);
/**
* Compare this row value expression with a subselect
* using a dynamic comparator.
*
* See the explicit comparison methods for details. Note, not all
* {@link Comparator} types are supported
*
* @see #equal(Select)
* @see #notEqual(Select)
* @see #lessThan(Select)
* @see #lessOrEqual(Select)
* @see #greaterThan(Select)
* @see #greaterOrEqual(Select)
*/
@Support
Condition compare(Comparator comparator, QuantifiedSelect extends Record18> select);
// ------------------------------------------------------------------------
// Equal / Not equal comparison predicates
// ------------------------------------------------------------------------
/**
* Compare this row value expression with another row value expression for
* equality.
*
* Row equality comparison predicates can be emulated in those databases
* that do not support such predicates natively:
* (A, B) = (1, 2)
is equivalent to
* A = 1 AND B = 2
*/
@Support
Condition equal(Row18 row);
/**
* Compare this row value expression with a record for equality.
*
* @see #equal(Row18)
*/
@Support
Condition equal(Record18 record);
/**
* Compare this row value expression with another row value expression for
* equality.
*
* @see #equal(Row18)
*/
@Support
Condition equal(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9, T10 t10, T11 t11, T12 t12, T13 t13, T14 t14, T15 t15, T16 t16, T17 t17, T18 t18);
/**
* Compare this row value expression with another row value expression for
* equality.
*
* @see #equal(Row18)
*/
@Support
Condition equal(Field t1, Field t2, Field t3, Field t4, Field t5, Field t6, Field t7, Field t8, Field t9, Field t10, Field t11, Field t12, Field t13, Field t14, Field t15, Field t16, Field t17, Field t18);
/**
* Compare this row value expression with a subselect for equality.
*
* @see #equal(Row18)
*/
@Support
Condition equal(Select extends Record18> select);
/**
* Compare this row value expression with a subselect for equality.
*
* @see DSL#all(Field)
* @see DSL#all(Select)
* @see DSL#all(Object...)
* @see DSL#any(Field)
* @see DSL#any(Select)
* @see DSL#any(Object...)
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
Condition equal(QuantifiedSelect extends Record18> select);
/**
* Compare this row value expression with another row value expression for
* equality.
*
* @see #equal(Row18)
*/
@Support
Condition eq(Row18 row);
/**
* Compare this row value expression with a record for equality.
*
* @see #equal(Row18)
*/
@Support
Condition eq(Record18 record);
/**
* Compare this row value expression with another row value expression for
* equality.
*
* @see #equal(Row18)
*/
@Support
Condition eq(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9, T10 t10, T11 t11, T12 t12, T13 t13, T14 t14, T15 t15, T16 t16, T17 t17, T18 t18);
/**
* Compare this row value expression with another row value expression for
* equality.
*
* @see #equal(Row18)
*/
@Support
Condition eq(Field t1, Field t2, Field t3, Field t4, Field t5, Field t6, Field t7, Field t8, Field t9, Field t10, Field t11, Field t12, Field t13, Field t14, Field t15, Field t16, Field t17, Field t18);
/**
* Compare this row value expression with a subselect for equality.
*
* @see #equal(Row18)
*/
@Support
Condition eq(Select extends Record18> select);
/**
* Compare this row value expression with a subselect for equality.
*
* @see DSL#all(Field)
* @see DSL#all(Select)
* @see DSL#all(Object...)
* @see DSL#any(Field)
* @see DSL#any(Select)
* @see DSL#any(Object...)
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
Condition eq(QuantifiedSelect extends Record18> select);
/**
* Compare this row value expression with another row value expression for
* non-equality.
*
* Row non-equality comparison predicates can be emulated in those
* databases that do not support such predicates natively:
* (A, B) <> (1, 2)
is equivalent to
* NOT(A = 1 AND B = 2)
*/
@Support
Condition notEqual(Row18 row);
/**
* Compare this row value expression with a record for non-equality
*
* @see #notEqual(Row18)
*/
@Support
Condition notEqual(Record18 record);
/**
* Compare this row value expression with another row value expression for.
* non-equality
*
* @see #notEqual(Row18)
*/
@Support
Condition notEqual(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9, T10 t10, T11 t11, T12 t12, T13 t13, T14 t14, T15 t15, T16 t16, T17 t17, T18 t18);
/**
* Compare this row value expression with another row value expression for
* non-equality.
*
* @see #notEqual(Row18)
*/
@Support
Condition notEqual(Field t1, Field t2, Field t3, Field t4, Field t5, Field t6, Field t7, Field t8, Field t9, Field t10, Field t11, Field t12, Field t13, Field t14, Field t15, Field t16, Field t17, Field t18);
/**
* Compare this row value expression with a subselect for non-equality.
*
* @see #notEqual(Row18)
*/
@Support
Condition notEqual(Select extends Record18> select);
/**
* Compare this row value expression with a subselect for non-equality.
*
* @see DSL#all(Field)
* @see DSL#all(Select)
* @see DSL#all(Object...)
* @see DSL#any(Field)
* @see DSL#any(Select)
* @see DSL#any(Object...)
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
Condition notEqual(QuantifiedSelect extends Record18> select);
/**
* Compare this row value expression with another row value expression for
* non-equality.
*
* @see #notEqual(Row18)
*/
@Support
Condition ne(Row18 row);
/**
* Compare this row value expression with a record for non-equality.
*
* @see #notEqual(Row18)
*/
@Support
Condition ne(Record18 record);
/**
* Compare this row value expression with another row value expression for
* non-equality.
*
* @see #notEqual(Row18)
*/
@Support
Condition ne(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9, T10 t10, T11 t11, T12 t12, T13 t13, T14 t14, T15 t15, T16 t16, T17 t17, T18 t18);
/**
* Compare this row value expression with another row value expression for
* non-equality.
*
* @see #notEqual(Row18)
*/
@Support
Condition ne(Field t1, Field t2, Field t3, Field t4, Field t5, Field t6, Field t7, Field t8, Field t9, Field t10, Field t11, Field t12, Field t13, Field t14, Field t15, Field t16, Field t17, Field t18);
/**
* Compare this row value expression with a subselect for non-equality.
*
* @see #notEqual(Row18)
*/
@Support
Condition ne(Select extends Record18> select);
/**
* Compare this row value expression with a subselect for non-equality.
*
* @see DSL#all(Field)
* @see DSL#all(Select)
* @see DSL#all(Object...)
* @see DSL#any(Field)
* @see DSL#any(Select)
* @see DSL#any(Object...)
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
Condition ne(QuantifiedSelect extends Record18> select);
// ------------------------------------------------------------------------
// Ordering comparison predicates
// ------------------------------------------------------------------------
/**
* Compare this row value expression with another row value expression for
* order.
*
* Row order comparison predicates can be emulated in those
* databases that do not support such predicates natively:
* (A, B, C) < (1, 2, 3)
is equivalent to
* A < 1 OR (A = 1 AND B < 2) OR (A = 1 AND B = 2 AND C < 3)
*/
@Support
Condition lessThan(Row18 row);
/**
* Compare this row value expression with a record for order.
*
* @see #lessThan(Row18)
*/
@Support
Condition lessThan(Record18 record);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #lessThan(Row18)
*/
@Support
Condition lessThan(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9, T10 t10, T11 t11, T12 t12, T13 t13, T14 t14, T15 t15, T16 t16, T17 t17, T18 t18);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #lessThan(Row18)
*/
@Support
Condition lessThan(Field t1, Field t2, Field t3, Field t4, Field t5, Field t6, Field t7, Field t8, Field t9, Field t10, Field t11, Field t12, Field t13, Field t14, Field t15, Field t16, Field t17, Field t18);
/**
* Compare this row value expression with a subselect for order.
*
* @see #lessThan(Row18)
*/
@Support
Condition lessThan(Select extends Record18> select);
/**
* Compare this row value expression with a subselect for order.
*
* @see DSL#all(Field)
* @see DSL#all(Select)
* @see DSL#all(Object...)
* @see DSL#any(Field)
* @see DSL#any(Select)
* @see DSL#any(Object...)
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
Condition lessThan(QuantifiedSelect extends Record18> select);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #lessThan(Row18)
*/
@Support
Condition lt(Row18 row);
/**
* Compare this row value expression with a record for order.
*
* @see #lessThan(Row18)
*/
@Support
Condition lt(Record18 record);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #lessThan(Row18)
*/
@Support
Condition lt(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9, T10 t10, T11 t11, T12 t12, T13 t13, T14 t14, T15 t15, T16 t16, T17 t17, T18 t18);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #lessThan(Row18)
*/
@Support
Condition lt(Field t1, Field t2, Field t3, Field t4, Field t5, Field t6, Field t7, Field t8, Field t9, Field t10, Field t11, Field t12, Field t13, Field t14, Field t15, Field t16, Field t17, Field t18);
/**
* Compare this row value expression with a subselect for order.
*
* @see #lessThan(Row18)
*/
@Support
Condition lt(Select extends Record18> select);
/**
* Compare this row value expression with a subselect for order.
*
* @see DSL#all(Field)
* @see DSL#all(Select)
* @see DSL#all(Object...)
* @see DSL#any(Field)
* @see DSL#any(Select)
* @see DSL#any(Object...)
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
Condition lt(QuantifiedSelect extends Record18> select);
/**
* Compare this row value expression with another row value expression for
* order.
*
* Row order comparison predicates can be emulated in those
* databases that do not support such predicates natively:
* (A, B) <= (1, 2)
is equivalent to
* A < 1 OR (A = 1 AND B < 2) OR (A = 1 AND B = 2)
*/
@Support
Condition lessOrEqual(Row18 row);
/**
* Compare this row value expression with a record for order.
*
* @see #lessOrEqual(Row18)
*/
@Support
Condition lessOrEqual(Record18 record);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #lessOrEqual(Row18)
*/
@Support
Condition lessOrEqual(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9, T10 t10, T11 t11, T12 t12, T13 t13, T14 t14, T15 t15, T16 t16, T17 t17, T18 t18);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #lessOrEqual(Row18)
*/
@Support
Condition lessOrEqual(Field t1, Field t2, Field t3, Field t4, Field t5, Field t6, Field t7, Field t8, Field t9, Field t10, Field t11, Field t12, Field t13, Field t14, Field t15, Field t16, Field t17, Field t18);
/**
* Compare this row value expression with a subselect for order.
*
* @see #lessOrEqual(Row18)
*/
@Support
Condition lessOrEqual(Select extends Record18> select);
/**
* Compare this row value expression with a subselect for order.
*
* @see DSL#all(Field)
* @see DSL#all(Select)
* @see DSL#all(Object...)
* @see DSL#any(Field)
* @see DSL#any(Select)
* @see DSL#any(Object...)
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
Condition lessOrEqual(QuantifiedSelect extends Record18> select);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #lessOrEqual(Row18)
*/
@Support
Condition le(Row18 row);
/**
* Compare this row value expression with a record for order.
*
* @see #lessOrEqual(Row18)
*/
@Support
Condition le(Record18 record);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #lessOrEqual(Row18)
*/
@Support
Condition le(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9, T10 t10, T11 t11, T12 t12, T13 t13, T14 t14, T15 t15, T16 t16, T17 t17, T18 t18);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #lessOrEqual(Row18)
*/
@Support
Condition le(Field t1, Field t2, Field t3, Field t4, Field t5, Field t6, Field t7, Field t8, Field t9, Field t10, Field t11, Field t12, Field t13, Field t14, Field t15, Field t16, Field t17, Field t18);
/**
* Compare this row value expression with a subselect for order.
*
* @see #lessOrEqual(Row18)
*/
@Support
Condition le(Select extends Record18> select);
/**
* Compare this row value expression with a subselect for order.
*
* @see DSL#all(Field)
* @see DSL#all(Select)
* @see DSL#all(Object...)
* @see DSL#any(Field)
* @see DSL#any(Select)
* @see DSL#any(Object...)
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
Condition le(QuantifiedSelect extends Record18> select);
/**
* Compare this row value expression with another row value expression for
* order.
*
* Row order comparison predicates can be emulated in those
* databases that do not support such predicates natively:
* (A, B, C) > (1, 2, 3)
is equivalent to
* A > 1 OR (A = 1 AND B > 2) OR (A = 1 AND B = 2 AND C > 3)
*/
@Support
Condition greaterThan(Row18 row);
/**
* Compare this row value expression with a record for order.
*
* @see #greaterThan(Row18)
*/
@Support
Condition greaterThan(Record18 record);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #greaterThan(Row18)
*/
@Support
Condition greaterThan(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9, T10 t10, T11 t11, T12 t12, T13 t13, T14 t14, T15 t15, T16 t16, T17 t17, T18 t18);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #greaterThan(Row18)
*/
@Support
Condition greaterThan(Field t1, Field t2, Field t3, Field t4, Field t5, Field t6, Field t7, Field t8, Field t9, Field t10, Field t11, Field t12, Field t13, Field t14, Field t15, Field t16, Field t17, Field t18);
/**
* Compare this row value expression with a subselect for order.
*
* @see #greaterThan(Row18)
*/
@Support
Condition greaterThan(Select extends Record18> select);
/**
* Compare this row value expression with a subselect for order.
*
* @see DSL#all(Field)
* @see DSL#all(Select)
* @see DSL#all(Object...)
* @see DSL#any(Field)
* @see DSL#any(Select)
* @see DSL#any(Object...)
*/
@Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES })
Condition greaterThan(QuantifiedSelect extends Record18> select);
/**
* Compare this row value expression with another row value expression for
* order.
*
* @see #greaterThan(Row18)
*/
@Support
Condition gt(Row18 row);
/**
* Compare this row value expression with a record for order.
*
* @see #greaterThan(Row18)
*/
@Support
Condition gt(Record18