diff --git a/jOOQ-xtend/src/main/xtend/org/jooq/xtend/Conversions.xtend b/jOOQ-xtend/src/main/xtend/org/jooq/xtend/Conversions.xtend
new file mode 100644
index 0000000000..3d31899048
--- /dev/null
+++ b/jOOQ-xtend/src/main/xtend/org/jooq/xtend/Conversions.xtend
@@ -0,0 +1,1907 @@
+/**
+ * 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.xtend
+
+import javax.annotation.Generated
+
+import org.jooq.Condition
+import org.jooq.Field
+import org.jooq.QuantifiedSelect
+import org.jooq.Record
+import org.jooq.Record1
+import org.jooq.Record2
+import org.jooq.Record3
+import org.jooq.Record4
+import org.jooq.Record5
+import org.jooq.Record6
+import org.jooq.Record7
+import org.jooq.Record8
+import org.jooq.Record9
+import org.jooq.Record10
+import org.jooq.Record11
+import org.jooq.Record12
+import org.jooq.Record13
+import org.jooq.Record14
+import org.jooq.Record15
+import org.jooq.Record16
+import org.jooq.Record17
+import org.jooq.Record18
+import org.jooq.Record19
+import org.jooq.Record20
+import org.jooq.Record21
+import org.jooq.Record22
+import org.jooq.Row
+import org.jooq.RowN
+import org.jooq.Row1
+import org.jooq.Row2
+import org.jooq.Row3
+import org.jooq.Row4
+import org.jooq.Row5
+import org.jooq.Row6
+import org.jooq.Row7
+import org.jooq.Row8
+import org.jooq.Row9
+import org.jooq.Row10
+import org.jooq.Row11
+import org.jooq.Row12
+import org.jooq.Row13
+import org.jooq.Row14
+import org.jooq.Row15
+import org.jooq.Row16
+import org.jooq.Row17
+import org.jooq.Row18
+import org.jooq.Row19
+import org.jooq.Row20
+import org.jooq.Row21
+import org.jooq.Row22
+import org.jooq.Select
+
+import org.jooq.impl.DSL
+
+/**
+ * jOOQ type conversions used to enhance the jOOQ Java API with Xtend operators.
+ *
+ * @author Lukas Eder
+ * @see http://www.eclipse.org/xtend/documentation.html#operators
+ */
+@Generated("This class was generated using jOOQ-tools")
+class Conversions {
+
+ def static operator_or(Condition c1, Condition c2) {
+ c1.or(c2);
+ }
+
+ def static operator_and(Condition c1, Condition c2) {
+ c1.and(c2);
+ }
+
+ def static operator_tripleEquals(Field f1, T f2) {
+ f1.eq(f2)
+ }
+
+ def static operator_tripleEquals(Field f1, Field f2) {
+ f1.eq(f2)
+ }
+
+ def static operator_tripleEquals(Field f1, Select extends Record1> f2) {
+ f1.eq(f2)
+ }
+
+ def static operator_tripleEquals(Field f1, QuantifiedSelect extends Record1> f2) {
+ f1.eq(f2)
+ }
+
+ def static operator_tripleEquals(RowN r1, RowN r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(RowN r1, Record r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(RowN r1, Select extends Record> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row1 r1, Row1 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row1 r1, Record1 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row1 r1, Select extends Record1> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row2 r1, Row2 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row2 r1, Record2 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row2 r1, Select extends Record2> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row3 r1, Row3 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row3 r1, Record3 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row3 r1, Select extends Record3> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row4 r1, Row4 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row4 r1, Record4 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row4 r1, Select extends Record4> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row5 r1, Row5 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row5 r1, Record5 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row5 r1, Select extends Record5> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row6 r1, Row6 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row6 r1, Record6 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row6 r1, Select extends Record6> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row7 r1, Row7 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row7 r1, Record7 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row7 r1, Select extends Record7> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row8 r1, Row8 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row8 r1, Record8 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row8 r1, Select extends Record8> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row9 r1, Row9 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row9 r1, Record9 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row9 r1, Select extends Record9> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row10 r1, Row10 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row10 r1, Record10 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row10 r1, Select extends Record10> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row11 r1, Row11 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row11 r1, Record11 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row11 r1, Select extends Record11> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row12 r1, Row12 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row12 r1, Record12 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row12 r1, Select extends Record12> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row13 r1, Row13 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row13 r1, Record13 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row13 r1, Select extends Record13> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row14 r1, Row14 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row14 r1, Record14 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row14 r1, Select extends Record14> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row15 r1, Row15 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row15 r1, Record15 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row15 r1, Select extends Record15> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row16 r1, Row16 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row16 r1, Record16 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row16 r1, Select extends Record16> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row17 r1, Row17 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row17 r1, Record17 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row17 r1, Select extends Record17> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row18 r1, Row18 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row18 r1, Record18 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row18 r1, Select extends Record18> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row19 r1, Row19 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row19 r1, Record19 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row19 r1, Select extends Record19> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row20 r1, Row20 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row20 r1, Record20 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row20 r1, Select extends Record20> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row21 r1, Row21 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row21 r1, Record21 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row21 r1, Select extends Record21> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row22 r1, Row22 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row22 r1, Record22 r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleEquals(Row22 r1, Select extends Record22> r2) {
+ r1.eq(r2)
+ }
+
+ def static operator_tripleNotEquals(Field f1, T f2) {
+ f1.ne(f2)
+ }
+
+ def static operator_tripleNotEquals(Field f1, Field f2) {
+ f1.ne(f2)
+ }
+
+ def static operator_tripleNotEquals(Field f1, Select extends Record1> f2) {
+ f1.ne(f2)
+ }
+
+ def static operator_tripleNotEquals(Field f1, QuantifiedSelect extends Record1> f2) {
+ f1.ne(f2)
+ }
+
+ def static operator_tripleNotEquals(Row1 r1, Row1 r2) {
+ r1.ne(r2)
+ }
+
+ def static operator_tripleNotEquals(Row1 r1, Record1 r2) {
+ r1.ne(r2)
+ }
+
+ def static operator_tripleNotEquals(Row1 r1, Select extends Record1> r2) {
+ r1.ne(r2)
+ }
+
+ def static operator_tripleNotEquals(Row2 r1, Row2 r2) {
+ r1.ne(r2)
+ }
+
+ def static operator_tripleNotEquals(Row2 r1, Record2 r2) {
+ r1.ne(r2)
+ }
+
+ def static operator_tripleNotEquals(Row2 r1, Select extends Record2> r2) {
+ r1.ne(r2)
+ }
+
+ def static operator_tripleNotEquals(Row3 r1, Row3 r2) {
+ r1.ne(r2)
+ }
+
+ def static operator_tripleNotEquals(Row3 r1, Record3 r2) {
+ r1.ne(r2)
+ }
+
+ def static operator_tripleNotEquals(Row3 r1, Select extends Record3> r2) {
+ r1.ne(r2)
+ }
+
+ def static operator_tripleNotEquals(Row4 r1, Row4 r2) {
+ r1.ne(r2)
+ }
+
+ def static operator_tripleNotEquals(Row4 r1, Record4