[#2706] Generate "full" constructors in records, allowing to construct a
record with all values set
This commit is contained in:
parent
d0947d8c32
commit
d465dcbd14
@ -593,6 +593,30 @@ public class JavaGenerator extends AbstractGenerator {
|
||||
out.tab(2).println("super(%s);", tableIdentifier);
|
||||
out.tab(1).println("}");
|
||||
|
||||
List<String> arguments = new ArrayList<String>();
|
||||
for (int i = 0; i < degree; i++) {
|
||||
final ColumnDefinition column = table.getColumn(i);
|
||||
final String columnMember = getStrategy().getJavaMemberName(column, Mode.DEFAULT);
|
||||
final String type = getJavaType(column.getType());
|
||||
|
||||
arguments.add(type + " " + columnMember);
|
||||
}
|
||||
|
||||
out.tab(1).javadoc("Create a detached, initialised %s", className);
|
||||
out.tab(1).println("public %s([[%s]]) {", className, arguments);
|
||||
out.tab(2).println("super(%s);", tableIdentifier);
|
||||
out.println();
|
||||
|
||||
for (int i = 0; i < degree; i++) {
|
||||
final ColumnDefinition column = table.getColumn(i);
|
||||
final String columnMember = getStrategy().getJavaMemberName(column, Mode.DEFAULT);
|
||||
|
||||
out.tab(2).println("setValue(%s, %s);", i, columnMember);
|
||||
}
|
||||
|
||||
out.tab(1).println("}");
|
||||
|
||||
|
||||
out.println("}");
|
||||
out.close();
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TArraysRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TArraysRecord> implements org.jooq.Record4<java.lang.Integer, java.lang.Object[], java.lang.Object[], java.lang.Object[]>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITArrays {
|
||||
|
||||
private static final long serialVersionUID = 849559824;
|
||||
private static final long serialVersionUID = -712796983;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_ARRAYS.ID</code>.
|
||||
@ -205,4 +205,16 @@ public class TArraysRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
public TArraysRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TArrays.T_ARRAYS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TArraysRecord
|
||||
*/
|
||||
public TArraysRecord(java.lang.Integer id, java.lang.Object[] stringArray, java.lang.Object[] numberArray, java.lang.Object[] dateArray) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TArrays.T_ARRAYS);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, stringArray);
|
||||
setValue(2, numberArray);
|
||||
setValue(3, dateArray);
|
||||
}
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord> implements org.jooq.Record6<java.lang.Integer, java.lang.String, java.lang.String, java.sql.Date, java.lang.Integer, java.lang.String>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITAuthor {
|
||||
|
||||
private static final long serialVersionUID = 227202504;
|
||||
private static final long serialVersionUID = 271292686;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_AUTHOR.ID</code>. The author ID
|
||||
@ -273,4 +273,18 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
public TAuthorRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TAuthor.T_AUTHOR);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TAuthorRecord
|
||||
*/
|
||||
public TAuthorRecord(java.lang.Integer id, java.lang.String firstName, java.lang.String lastName, java.sql.Date dateOfBirth, java.lang.Integer yearOfBirth, java.lang.String address) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TAuthor.T_AUTHOR);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, firstName);
|
||||
setValue(2, lastName);
|
||||
setValue(3, dateOfBirth);
|
||||
setValue(4, yearOfBirth);
|
||||
setValue(5, address);
|
||||
}
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord> implements org.jooq.Record11<java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.String, java.lang.Integer, java.lang.Integer, java.lang.String, byte[], java.lang.Integer, java.sql.Timestamp>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITBook {
|
||||
|
||||
private static final long serialVersionUID = -229971982;
|
||||
private static final long serialVersionUID = 1585415183;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_BOOK.ID</code>. The book ID
|
||||
@ -438,4 +438,23 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
public TBookRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TBookRecord
|
||||
*/
|
||||
public TBookRecord(java.lang.Integer id, java.lang.Integer authorId, java.lang.Integer coAuthorId, java.lang.Integer detailsId, java.lang.String title, java.lang.Integer publishedIn, java.lang.Integer languageId, java.lang.String contentText, byte[] contentPdf, java.lang.Integer recVersion, java.sql.Timestamp recTimestamp) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, authorId);
|
||||
setValue(2, coAuthorId);
|
||||
setValue(3, detailsId);
|
||||
setValue(4, title);
|
||||
setValue(5, publishedIn);
|
||||
setValue(6, languageId);
|
||||
setValue(7, contentText);
|
||||
setValue(8, contentPdf);
|
||||
setValue(9, recVersion);
|
||||
setValue(10, recTimestamp);
|
||||
}
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord> implements org.jooq.Record1<java.lang.String>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITBookStore {
|
||||
|
||||
private static final long serialVersionUID = 635247646;
|
||||
private static final long serialVersionUID = -1518501267;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_BOOK_STORE.NAME</code>. The books store name
|
||||
@ -108,4 +108,13 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq
|
||||
public TBookStoreRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TBookStore.T_BOOK_STORE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TBookStoreRecord
|
||||
*/
|
||||
public TBookStoreRecord(java.lang.String name) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TBookStore.T_BOOK_STORE);
|
||||
|
||||
setValue(0, name);
|
||||
}
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord> implements org.jooq.Record3<java.lang.String, java.lang.Integer, java.lang.Integer>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITBookToBookStore {
|
||||
|
||||
private static final long serialVersionUID = -323541388;
|
||||
private static final long serialVersionUID = -1605512644;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_BOOK_TO_BOOK_STORE.BOOK_STORE_NAME</code>. The book store name
|
||||
@ -174,4 +174,15 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<or
|
||||
public TBookToBookStoreRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TBookToBookStoreRecord
|
||||
*/
|
||||
public TBookToBookStoreRecord(java.lang.String bookStoreName, java.lang.Integer bookId, java.lang.Integer stock) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE);
|
||||
|
||||
setValue(0, bookStoreName);
|
||||
setValue(1, bookId);
|
||||
setValue(2, stock);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBooleansRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TBooleansRecord> implements org.jooq.Record11<java.lang.Integer, org.jooq.test._.converters.Boolean_10, org.jooq.test._.converters.Boolean_TF_LC, org.jooq.test._.converters.Boolean_TF_UC, org.jooq.test._.converters.Boolean_YES_NO_LC, org.jooq.test._.converters.Boolean_YES_NO_UC, org.jooq.test._.converters.Boolean_YN_LC, org.jooq.test._.converters.Boolean_YN_UC, java.lang.Boolean, java.lang.Boolean, java.lang.Boolean>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITBooleans {
|
||||
|
||||
private static final long serialVersionUID = 1145782861;
|
||||
private static final long serialVersionUID = 1089853964;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_BOOLEANS.ID</code>.
|
||||
@ -436,4 +436,23 @@ public class TBooleansRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.
|
||||
public TBooleansRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TBooleans.T_BOOLEANS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TBooleansRecord
|
||||
*/
|
||||
public TBooleansRecord(java.lang.Integer id, org.jooq.test._.converters.Boolean_10 oneZero, org.jooq.test._.converters.Boolean_TF_LC trueFalseLc, org.jooq.test._.converters.Boolean_TF_UC trueFalseUc, org.jooq.test._.converters.Boolean_YES_NO_LC yesNoLc, org.jooq.test._.converters.Boolean_YES_NO_UC yesNoUc, org.jooq.test._.converters.Boolean_YN_LC yNLc, org.jooq.test._.converters.Boolean_YN_UC yNUc, java.lang.Boolean vcBoolean, java.lang.Boolean cBoolean, java.lang.Boolean nBoolean) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TBooleans.T_BOOLEANS);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, oneZero);
|
||||
setValue(2, trueFalseLc);
|
||||
setValue(3, trueFalseUc);
|
||||
setValue(4, yesNoLc);
|
||||
setValue(5, yesNoUc);
|
||||
setValue(6, yNLc);
|
||||
setValue(7, yNUc);
|
||||
setValue(8, vcBoolean);
|
||||
setValue(9, cBoolean);
|
||||
setValue(10, nBoolean);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TDatesRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TDatesRecord> implements org.jooq.Record6<java.lang.Integer, java.sql.Date, java.sql.Time, java.sql.Timestamp, java.lang.Integer, java.lang.Long>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITDates {
|
||||
|
||||
private static final long serialVersionUID = -1305645392;
|
||||
private static final long serialVersionUID = -794475584;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_DATES.ID</code>.
|
||||
@ -271,4 +271,18 @@ public class TDatesRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.tes
|
||||
public TDatesRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TDates.T_DATES);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TDatesRecord
|
||||
*/
|
||||
public TDatesRecord(java.lang.Integer id, java.sql.Date d, java.sql.Time t, java.sql.Timestamp ts, java.lang.Integer dInt, java.lang.Long tsBigint) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TDates.T_DATES);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, d);
|
||||
setValue(2, t);
|
||||
setValue(3, ts);
|
||||
setValue(4, dInt);
|
||||
setValue(5, tsBigint);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TExoticTypesRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TExoticTypesRecord> implements org.jooq.Record2<java.lang.Integer, java.util.UUID>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITExoticTypes {
|
||||
|
||||
private static final long serialVersionUID = 458162961;
|
||||
private static final long serialVersionUID = -359543066;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_EXOTIC_TYPES.ID</code>.
|
||||
@ -139,4 +139,14 @@ public class TExoticTypesRecord extends org.jooq.impl.UpdatableRecordImpl<org.jo
|
||||
public TExoticTypesRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TExoticTypes.T_EXOTIC_TYPES);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TExoticTypesRecord
|
||||
*/
|
||||
public TExoticTypesRecord(java.lang.Integer id, java.util.UUID uu) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TExoticTypes.T_EXOTIC_TYPES);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, uu);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TIdentityPkRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord> implements org.jooq.Record2<java.lang.Integer, java.lang.Integer>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITIdentityPk {
|
||||
|
||||
private static final long serialVersionUID = 386492603;
|
||||
private static final long serialVersionUID = -1722345217;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_IDENTITY_PK.ID</code>.
|
||||
@ -139,4 +139,14 @@ public class TIdentityPkRecord extends org.jooq.impl.UpdatableRecordImpl<org.joo
|
||||
public TIdentityPkRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TIdentityPk.T_IDENTITY_PK);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TIdentityPkRecord
|
||||
*/
|
||||
public TIdentityPkRecord(java.lang.Integer id, java.lang.Integer val) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TIdentityPk.T_IDENTITY_PK);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, val);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TIdentityRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TIdentityRecord> implements org.jooq.Record2<java.lang.Integer, java.lang.Integer>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITIdentity {
|
||||
|
||||
private static final long serialVersionUID = -1690668656;
|
||||
private static final long serialVersionUID = 1607817707;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_IDENTITY.ID</code>.
|
||||
@ -127,4 +127,14 @@ public class TIdentityRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test
|
||||
public TIdentityRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TIdentity.T_IDENTITY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TIdentityRecord
|
||||
*/
|
||||
public TIdentityRecord(java.lang.Integer id, java.lang.Integer val) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TIdentity.T_IDENTITY);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, val);
|
||||
}
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord> implements org.jooq.Record4<java.lang.String, java.lang.String, java.lang.String, java.lang.Integer>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITLanguage {
|
||||
|
||||
private static final long serialVersionUID = 453676031;
|
||||
private static final long serialVersionUID = 1999808972;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_LANGUAGE.CD</code>. The language ISO code
|
||||
@ -207,4 +207,16 @@ public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.
|
||||
public TLanguageRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TLanguage.T_LANGUAGE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TLanguageRecord
|
||||
*/
|
||||
public TLanguageRecord(java.lang.String cd, java.lang.String description, java.lang.String descriptionEnglish, java.lang.Integer id) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TLanguage.T_LANGUAGE);
|
||||
|
||||
setValue(0, cd);
|
||||
setValue(1, description);
|
||||
setValue(2, descriptionEnglish);
|
||||
setValue(3, id);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord> implements org.jooq.Record3<java.lang.Integer, java.lang.Integer, java.lang.Integer>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITTriggers {
|
||||
|
||||
private static final long serialVersionUID = -2112531208;
|
||||
private static final long serialVersionUID = 1765460564;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_TRIGGERS.ID_GENERATED</code>.
|
||||
@ -172,4 +172,15 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.
|
||||
public TTriggersRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TTriggers.T_TRIGGERS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TTriggersRecord
|
||||
*/
|
||||
public TTriggersRecord(java.lang.Integer idGenerated, java.lang.Integer id, java.lang.Integer counter) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TTriggers.T_TRIGGERS);
|
||||
|
||||
setValue(0, idGenerated);
|
||||
setValue(1, id);
|
||||
setValue(2, counter);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TUnsignedRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.TUnsignedRecord> implements org.jooq.Record4<org.jooq.types.UByte, org.jooq.types.UShort, org.jooq.types.UInteger, org.jooq.types.ULong>, org.jooq.test.h2.generatedclasses.tables.interfaces.ITUnsigned {
|
||||
|
||||
private static final long serialVersionUID = 1036458223;
|
||||
private static final long serialVersionUID = 1141020265;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_UNSIGNED.U_BYTE</code>.
|
||||
@ -193,4 +193,16 @@ public class TUnsignedRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test
|
||||
public TUnsignedRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TUnsigned.T_UNSIGNED);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised TUnsignedRecord
|
||||
*/
|
||||
public TUnsignedRecord(org.jooq.types.UByte uByte, org.jooq.types.UShort uShort, org.jooq.types.UInteger uInt, org.jooq.types.ULong uLong) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.TUnsigned.T_UNSIGNED);
|
||||
|
||||
setValue(0, uByte);
|
||||
setValue(1, uShort);
|
||||
setValue(2, uInt);
|
||||
setValue(3, uLong);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class T_2327UkOnlyRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.T_2327UkOnlyRecord> implements org.jooq.Record1<java.lang.Integer>, org.jooq.test.h2.generatedclasses.tables.interfaces.IT_2327UkOnly {
|
||||
|
||||
private static final long serialVersionUID = -2140237883;
|
||||
private static final long serialVersionUID = 512692899;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_2327_UK_ONLY.ID</code>.
|
||||
@ -94,4 +94,13 @@ public class T_2327UkOnlyRecord extends org.jooq.impl.TableRecordImpl<org.jooq.t
|
||||
public T_2327UkOnlyRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.T_2327UkOnly.T_2327_UK_ONLY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised T_2327UkOnlyRecord
|
||||
*/
|
||||
public T_2327UkOnlyRecord(java.lang.Integer id) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.T_2327UkOnly.T_2327_UK_ONLY);
|
||||
|
||||
setValue(0, id);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.T_639NumbersTableRecord> implements org.jooq.Record13<java.lang.Integer, java.lang.Byte, java.lang.Short, java.lang.Integer, java.lang.Long, java.lang.Byte, java.lang.Short, java.lang.Integer, java.lang.Long, java.math.BigInteger, java.math.BigDecimal, java.lang.Float, java.lang.Double>, org.jooq.test.h2.generatedclasses.tables.interfaces.IT_639NumbersTable {
|
||||
|
||||
private static final long serialVersionUID = 1270187864;
|
||||
private static final long serialVersionUID = -1053924033;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_639_NUMBERS_TABLE.ID</code>.
|
||||
@ -502,4 +502,25 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl<o
|
||||
public T_639NumbersTableRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.T_639NumbersTable.T_639_NUMBERS_TABLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised T_639NumbersTableRecord
|
||||
*/
|
||||
public T_639NumbersTableRecord(java.lang.Integer id, java.lang.Byte byte_, java.lang.Short short_, java.lang.Integer integer, java.lang.Long long_, java.lang.Byte byteDecimal, java.lang.Short shortDecimal, java.lang.Integer integerDecimal, java.lang.Long longDecimal, java.math.BigInteger bigInteger, java.math.BigDecimal bigDecimal, java.lang.Float float_, java.lang.Double double_) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.T_639NumbersTable.T_639_NUMBERS_TABLE);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, byte_);
|
||||
setValue(2, short_);
|
||||
setValue(3, integer);
|
||||
setValue(4, long_);
|
||||
setValue(5, byteDecimal);
|
||||
setValue(6, shortDecimal);
|
||||
setValue(7, integerDecimal);
|
||||
setValue(8, longDecimal);
|
||||
setValue(9, bigInteger);
|
||||
setValue(10, bigDecimal);
|
||||
setValue(11, float_);
|
||||
setValue(12, double_);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.T_725LobTestRecord> implements org.jooq.Record2<java.lang.Integer, byte[]>, org.jooq.test.h2.generatedclasses.tables.interfaces.IT_725LobTest {
|
||||
|
||||
private static final long serialVersionUID = -813187908;
|
||||
private static final long serialVersionUID = 1052147072;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_725_LOB_TEST.ID</code>.
|
||||
@ -139,4 +139,14 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl<org.jo
|
||||
public T_725LobTestRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.T_725LobTest.T_725_LOB_TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised T_725LobTestRecord
|
||||
*/
|
||||
public T_725LobTestRecord(java.lang.Integer id, byte[] lob) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.T_725LobTest.T_725_LOB_TEST);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, lob);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class T_785Record extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.T_785Record> implements org.jooq.Record3<java.lang.Integer, java.lang.String, java.lang.String>, org.jooq.test.h2.generatedclasses.tables.interfaces.IT_785 {
|
||||
|
||||
private static final long serialVersionUID = 271505739;
|
||||
private static final long serialVersionUID = 1107011078;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_785.ID</code>.
|
||||
@ -160,4 +160,15 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.
|
||||
public T_785Record() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.T_785.T_785);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised T_785Record
|
||||
*/
|
||||
public T_785Record(java.lang.Integer id, java.lang.String name, java.lang.String value) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.T_785.T_785);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, name);
|
||||
setValue(2, value);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class T_877Record extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.T_877Record> implements org.jooq.Record1<java.lang.Integer>, org.jooq.test.h2.generatedclasses.tables.interfaces.IT_877 {
|
||||
|
||||
private static final long serialVersionUID = 435014745;
|
||||
private static final long serialVersionUID = -449374963;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_877.ID</code>.
|
||||
@ -94,4 +94,13 @@ public class T_877Record extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.
|
||||
public T_877Record() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.T_877.T_877);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised T_877Record
|
||||
*/
|
||||
public T_877Record(java.lang.Integer id) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.T_877.T_877);
|
||||
|
||||
setValue(0, id);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class VAuthorRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.VAuthorRecord> implements org.jooq.Record6<java.lang.Integer, java.lang.String, java.lang.String, java.sql.Date, java.lang.Integer, java.lang.String>, org.jooq.test.h2.generatedclasses.tables.interfaces.IVAuthor {
|
||||
|
||||
private static final long serialVersionUID = -1623132741;
|
||||
private static final long serialVersionUID = 364169215;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.V_AUTHOR.ID</code>.
|
||||
@ -259,4 +259,18 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.h
|
||||
public VAuthorRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.VAuthor.V_AUTHOR);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised VAuthorRecord
|
||||
*/
|
||||
public VAuthorRecord(java.lang.Integer id, java.lang.String firstName, java.lang.String lastName, java.sql.Date dateOfBirth, java.lang.Integer yearOfBirth, java.lang.String address) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.VAuthor.V_AUTHOR);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, firstName);
|
||||
setValue(2, lastName);
|
||||
setValue(3, dateOfBirth);
|
||||
setValue(4, yearOfBirth);
|
||||
setValue(5, address);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class VBookRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.VBookRecord> implements org.jooq.Record11<java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.String, java.lang.Integer, java.lang.Integer, java.lang.String, byte[], java.lang.Integer, java.sql.Timestamp>, org.jooq.test.h2.generatedclasses.tables.interfaces.IVBook {
|
||||
|
||||
private static final long serialVersionUID = -538722876;
|
||||
private static final long serialVersionUID = 1802443557;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.V_BOOK.ID</code>.
|
||||
@ -424,4 +424,23 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.
|
||||
public VBookRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.VBook.V_BOOK);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised VBookRecord
|
||||
*/
|
||||
public VBookRecord(java.lang.Integer id, java.lang.Integer authorId, java.lang.Integer coAuthorId, java.lang.Integer detailsId, java.lang.String title, java.lang.Integer publishedIn, java.lang.Integer languageId, java.lang.String contentText, byte[] contentPdf, java.lang.Integer recVersion, java.sql.Timestamp recTimestamp) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.VBook.V_BOOK);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, authorId);
|
||||
setValue(2, coAuthorId);
|
||||
setValue(3, detailsId);
|
||||
setValue(4, title);
|
||||
setValue(5, publishedIn);
|
||||
setValue(6, languageId);
|
||||
setValue(7, contentText);
|
||||
setValue(8, contentPdf);
|
||||
setValue(9, recVersion);
|
||||
setValue(10, recTimestamp);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class VLibraryRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.VLibraryRecord> implements org.jooq.Record2<java.lang.String, java.lang.String>, org.jooq.test.h2.generatedclasses.tables.interfaces.IVLibrary {
|
||||
|
||||
private static final long serialVersionUID = 840011685;
|
||||
private static final long serialVersionUID = -1858323478;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.V_LIBRARY.AUTHOR</code>.
|
||||
@ -127,4 +127,14 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.
|
||||
public VLibraryRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.VLibrary.V_LIBRARY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised VLibraryRecord
|
||||
*/
|
||||
public VLibraryRecord(java.lang.String author, java.lang.String title) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.VLibrary.V_LIBRARY);
|
||||
|
||||
setValue(0, author);
|
||||
setValue(1, title);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class V_2603Record extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.V_2603Record> implements org.jooq.Record2<java.lang.Integer, java.lang.Integer>, org.jooq.test.h2.generatedclasses.tables.interfaces.IV_2603 {
|
||||
|
||||
private static final long serialVersionUID = -764503475;
|
||||
private static final long serialVersionUID = 892786247;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.V_2603.COL1</code>.
|
||||
@ -127,4 +127,14 @@ public class V_2603Record extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2
|
||||
public V_2603Record() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.V_2603.V_2603);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised V_2603Record
|
||||
*/
|
||||
public V_2603Record(java.lang.Integer col1, java.lang.Integer col4) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.V_2603.V_2603);
|
||||
|
||||
setValue(0, col1);
|
||||
setValue(1, col4);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class XTestCase_2025Record extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record> implements org.jooq.Record2<java.lang.Integer, java.lang.String>, org.jooq.test.h2.generatedclasses.tables.interfaces.IXTestCase_2025 {
|
||||
|
||||
private static final long serialVersionUID = -1575459549;
|
||||
private static final long serialVersionUID = -233301534;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.X_TEST_CASE_2025.REF_ID</code>.
|
||||
@ -127,4 +127,14 @@ public class XTestCase_2025Record extends org.jooq.impl.TableRecordImpl<org.jooq
|
||||
public XTestCase_2025Record() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.X_TEST_CASE_2025);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised XTestCase_2025Record
|
||||
*/
|
||||
public XTestCase_2025Record(java.lang.Integer refId, java.lang.String refName) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.X_TEST_CASE_2025);
|
||||
|
||||
setValue(0, refId);
|
||||
setValue(1, refName);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record> implements org.jooq.Record2<java.lang.Integer, java.lang.Integer>, org.jooq.test.h2.generatedclasses.tables.interfaces.IXTestCase_64_69 {
|
||||
|
||||
private static final long serialVersionUID = 1088177462;
|
||||
private static final long serialVersionUID = 1368865158;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.X_TEST_CASE_64_69.ID</code>.
|
||||
@ -139,4 +139,14 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl<org
|
||||
public XTestCase_64_69Record() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised XTestCase_64_69Record
|
||||
*/
|
||||
public XTestCase_64_69Record(java.lang.Integer id, java.lang.Integer unusedId) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, unusedId);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record> implements org.jooq.Record2<java.lang.Integer, java.lang.Short>, org.jooq.test.h2.generatedclasses.tables.interfaces.IXTestCase_71 {
|
||||
|
||||
private static final long serialVersionUID = -789789007;
|
||||
private static final long serialVersionUID = 1463957767;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.X_TEST_CASE_71.ID</code>.
|
||||
@ -139,4 +139,14 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl<org.jo
|
||||
public XTestCase_71Record() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised XTestCase_71Record
|
||||
*/
|
||||
public XTestCase_71Record(java.lang.Integer id, java.lang.Short testCase_64_69Id) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, testCase_64_69Id);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record> implements org.jooq.Record3<java.lang.Integer, java.lang.Integer, java.lang.String>, org.jooq.test.h2.generatedclasses.tables.interfaces.IXTestCase_85 {
|
||||
|
||||
private static final long serialVersionUID = -1638733534;
|
||||
private static final long serialVersionUID = 491665498;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.X_TEST_CASE_85.ID</code>.
|
||||
@ -172,4 +172,15 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl<org.jo
|
||||
public XTestCase_85Record() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised XTestCase_85Record
|
||||
*/
|
||||
public XTestCase_85Record(java.lang.Integer id, java.lang.Integer xUnusedId, java.lang.String xUnusedName) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, xUnusedId);
|
||||
setValue(2, xUnusedName);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> implements org.jooq.Record16<java.lang.Integer, java.lang.String, java.math.BigInteger, java.lang.Integer, java.lang.String, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.math.BigDecimal>, org.jooq.test.h2.generatedclasses.tables.interfaces.IXUnused {
|
||||
|
||||
private static final long serialVersionUID = 2057901947;
|
||||
private static final long serialVersionUID = -481499938;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.X_UNUSED.ID</code>.
|
||||
@ -601,4 +601,28 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
public XUnusedRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.XUnused.X_UNUSED);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised XUnusedRecord
|
||||
*/
|
||||
public XUnusedRecord(java.lang.Integer id, java.lang.String name, java.math.BigInteger bigInteger, java.lang.Integer idRef, java.lang.String nameRef, java.lang.Integer class_, java.lang.Integer fields, java.lang.Integer table, java.lang.Integer configuration, java.lang.Integer uDT, java.lang.Integer metaData, java.lang.Integer values, java.lang.Integer type0, java.lang.Integer primaryKey, java.lang.Integer primarykey, java.math.BigDecimal field_737) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.XUnused.X_UNUSED);
|
||||
|
||||
setValue(0, id);
|
||||
setValue(1, name);
|
||||
setValue(2, bigInteger);
|
||||
setValue(3, idRef);
|
||||
setValue(4, nameRef);
|
||||
setValue(5, class_);
|
||||
setValue(6, fields);
|
||||
setValue(7, table);
|
||||
setValue(8, configuration);
|
||||
setValue(9, uDT);
|
||||
setValue(10, metaData);
|
||||
setValue(11, values);
|
||||
setValue(12, type0);
|
||||
setValue(13, primaryKey);
|
||||
setValue(14, primarykey);
|
||||
setValue(15, field_737);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class ÄäRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.generatedclasses.tables.records.ÄäRecord> implements org.jooq.Record1<java.lang.Integer>, org.jooq.test.h2.generatedclasses.tables.interfaces.IÄä {
|
||||
|
||||
private static final long serialVersionUID = -48827083;
|
||||
private static final long serialVersionUID = 1441755535;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.Ää.Öö</code>.
|
||||
@ -94,4 +94,13 @@ public class ÄäRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.h2.g
|
||||
public ÄäRecord() {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.Ää.ÄÄ);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised ÄäRecord
|
||||
*/
|
||||
public ÄäRecord(java.lang.Integer öö) {
|
||||
super(org.jooq.test.h2.generatedclasses.tables.Ää.ÄÄ);
|
||||
|
||||
setValue(0, öö);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user