[#2042] Remove generated setters, setting foreign key values from
records - Regenerated H2 and Oracle schemas
This commit is contained in:
parent
3a7f4951be
commit
5635339388
@ -11,7 +11,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
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 = 636530530;
|
||||
private static final long serialVersionUID = 1249205090;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_BOOK.ID</code>. The book ID
|
||||
@ -37,18 +37,6 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBook.AUTHOR_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord}
|
||||
*/
|
||||
public void setAuthorId(org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBook.AUTHOR_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBook.AUTHOR_ID, value.getValue(org.jooq.test.h2.generatedclasses.tables.TAuthor.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.T_BOOK.AUTHOR_ID</code>. The author ID in entity 'author'
|
||||
*/
|
||||
@ -65,18 +53,6 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBook.CO_AUTHOR_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord}
|
||||
*/
|
||||
public void setCoAuthorId(org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBook.CO_AUTHOR_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBook.CO_AUTHOR_ID, value.getValue(org.jooq.test.h2.generatedclasses.tables.TAuthor.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.T_BOOK.CO_AUTHOR_ID</code>.
|
||||
*/
|
||||
@ -141,18 +117,6 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBook.LANGUAGE_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord}
|
||||
*/
|
||||
public void setLanguageId(org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBook.LANGUAGE_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBook.LANGUAGE_ID, value.getValue(org.jooq.test.h2.generatedclasses.tables.TLanguage.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.T_BOOK.LANGUAGE_ID</code>. The language of the book
|
||||
*/
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
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 = -2075303392;
|
||||
private static final long serialVersionUID = 1218048636;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.T_BOOK_TO_BOOK_STORE.BOOK_STORE_NAME</code>. The book store name
|
||||
@ -21,18 +21,6 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<or
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord}
|
||||
*/
|
||||
public void setBookStoreName(org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME, value.getValue(org.jooq.test.h2.generatedclasses.tables.TBookStore.NAME));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.T_BOOK_TO_BOOK_STORE.BOOK_STORE_NAME</code>. The book store name
|
||||
*/
|
||||
@ -49,18 +37,6 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<or
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.h2.generatedclasses.tables.records.TBookRecord}
|
||||
*/
|
||||
public void setBookId(org.jooq.test.h2.generatedclasses.tables.records.TBookRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_ID, value.getValue(org.jooq.test.h2.generatedclasses.tables.TBook.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.T_BOOK_TO_BOOK_STORE.BOOK_ID</code>. The book ID
|
||||
*/
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
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 = 956752736;
|
||||
private static final long serialVersionUID = 949365853;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.X_TEST_CASE_2025.REF_ID</code>.
|
||||
@ -19,30 +19,6 @@ public class XTestCase_2025Record extends org.jooq.impl.TableRecordImpl<org.jooq
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record}
|
||||
*/
|
||||
public void setRefId(org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID, value.getValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_85.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record}
|
||||
*/
|
||||
public void setRefId(org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID, value.getValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_71.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.X_TEST_CASE_2025.REF_ID</code>.
|
||||
*/
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
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 = -595773170;
|
||||
private static final long serialVersionUID = 1093534798;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.X_TEST_CASE_64_69.ID</code>.
|
||||
@ -35,30 +35,6 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl<org
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord}
|
||||
*/
|
||||
public void setUnusedId(org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID, value.getValue(org.jooq.test.h2.generatedclasses.tables.XUnused.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord}
|
||||
*/
|
||||
public void setUnusedId(org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID, value.getValue(org.jooq.test.h2.generatedclasses.tables.XUnused.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.X_TEST_CASE_64_69.UNUSED_ID</code>.
|
||||
*/
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables.records;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
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 = 2070958443;
|
||||
private static final long serialVersionUID = 1379825713;
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.X_TEST_CASE_71.ID</code>.
|
||||
@ -35,18 +35,6 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl<org.jo
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record}
|
||||
*/
|
||||
public void setTestCase_64_69Id(org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID, value.getValue(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.ID, Short.class));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.X_TEST_CASE_71.TEST_CASE_64_69_ID</code>.
|
||||
*/
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.multi_schema.tables.records;
|
||||
@javax.persistence.Table(name = "T_BOOK", schema = "MULTI_SCHEMA")
|
||||
public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TBookRecord> implements org.jooq.Record9<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[]> {
|
||||
|
||||
private static final long serialVersionUID = 896167626;
|
||||
private static final long serialVersionUID = -1475934458;
|
||||
|
||||
/**
|
||||
* Setter for <code>MULTI_SCHEMA.T_BOOK.ID</code>.
|
||||
@ -36,18 +36,6 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
setValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK.AUTHOR_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TAuthorRecord}
|
||||
*/
|
||||
public void setAuthorId(org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TAuthorRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK.AUTHOR_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK.AUTHOR_ID, value.getValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TAuthor.T_AUTHOR.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>MULTI_SCHEMA.T_BOOK.AUTHOR_ID</code>.
|
||||
*/
|
||||
@ -63,18 +51,6 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
setValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK.CO_AUTHOR_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TAuthorRecord}
|
||||
*/
|
||||
public void setCoAuthorId(org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TAuthorRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK.CO_AUTHOR_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK.CO_AUTHOR_ID, value.getValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TAuthor.T_AUTHOR.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>MULTI_SCHEMA.T_BOOK.CO_AUTHOR_ID</code>.
|
||||
*/
|
||||
@ -135,18 +111,6 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
setValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK.LANGUAGE_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.oracle.generatedclasses.test.tables.records.TLanguageRecord}
|
||||
*/
|
||||
public void setLanguageId(org.jooq.test.oracle.generatedclasses.test.tables.records.TLanguageRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK.LANGUAGE_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK.LANGUAGE_ID, value.getValue(org.jooq.test.oracle.generatedclasses.test.tables.TLanguage.T_LANGUAGE.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>MULTI_SCHEMA.T_BOOK.LANGUAGE_ID</code>.
|
||||
*/
|
||||
@ -190,7 +154,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Fetch a <code>MULTI_SCHEMA.T_AUTHOR</code> referenced by this <code>MULTI_SCHEMA.T_BOOK</code>
|
||||
* Fetch a record from <code>MULTI_SCHEMA.T_AUTHOR</code> referenced from <code>MULTI_SCHEMA.T_BOOK</code> through <code>MULTI_SCHEMA.FK_T_BOOK_AUTHOR_ID</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TAuthorRecord fetchTAuthorByAuthorId() {
|
||||
return create()
|
||||
@ -200,7 +164,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>MULTI_SCHEMA.T_AUTHOR</code> referenced by this <code>MULTI_SCHEMA.T_BOOK</code>
|
||||
* Fetch a record from <code>MULTI_SCHEMA.T_AUTHOR</code> referenced from <code>MULTI_SCHEMA.T_BOOK</code> through <code>MULTI_SCHEMA.FK_T_BOOK_CO_AUTHOR_ID</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() {
|
||||
return create()
|
||||
@ -210,7 +174,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.T_LANGUAGE</code> referenced by this <code>MULTI_SCHEMA.T_BOOK</code>
|
||||
* Fetch a record from <code>TEST.T_LANGUAGE</code> referenced from <code>MULTI_SCHEMA.T_BOOK</code> through <code>MULTI_SCHEMA.FK_T_BOOK_LANGUAGE_ID</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.TLanguageRecord fetchTLanguage() {
|
||||
return create()
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.multi_schema.tables.records;
|
||||
@javax.persistence.Table(name = "T_BOOK_SALE", schema = "MULTI_SCHEMA")
|
||||
public class TBookSaleRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TBookSaleRecord> implements org.jooq.Record5<java.lang.Integer, java.lang.Integer, java.lang.String, java.sql.Date, java.math.BigDecimal> {
|
||||
|
||||
private static final long serialVersionUID = -2065167504;
|
||||
private static final long serialVersionUID = 1207255637;
|
||||
|
||||
/**
|
||||
* Setter for <code>MULTI_SCHEMA.T_BOOK_SALE.ID</code>.
|
||||
@ -94,7 +94,7 @@ public class TBookSaleRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.T_BOOK_TO_BOOK_STORE</code> referenced by this <code>MULTI_SCHEMA.T_BOOK_SALE</code>
|
||||
* Fetch a record from <code>TEST.T_BOOK_TO_BOOK_STORE</code> referenced from <code>MULTI_SCHEMA.T_BOOK_SALE</code> through <code>MULTI_SCHEMA.FK_T_BOOK_TO_BOOK_STORE</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.TBookToBookStoreRecord fetchTBookToBookStore() {
|
||||
return create()
|
||||
|
||||
@ -50,8 +50,10 @@ public class Keys {
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.TBookToBookStoreRecord, org.jooq.test.oracle.generatedclasses.test.tables.records.TBookRecord> FK_B2BS_B_ID = ForeignKeys0.FK_B2BS_B_ID;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.TDirectoryRecord, org.jooq.test.oracle.generatedclasses.test.tables.records.TDirectoryRecord> PK_T_DIRECTORY_SELF = ForeignKeys0.PK_T_DIRECTORY_SELF;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_2025Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_85Record> FK_X_TEST_CASE_2025_1 = ForeignKeys0.FK_X_TEST_CASE_2025_1;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_2025Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_71Record> FK_X_TEST_CASE_2025_2 = ForeignKeys0.FK_X_TEST_CASE_2025_2;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_2025Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord> FK_X_TEST_CASE_2025_3 = ForeignKeys0.FK_X_TEST_CASE_2025_3;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord> FK_X_TEST_CASE_64_69A = ForeignKeys0.FK_X_TEST_CASE_64_69A;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord> FK_X_TEST_CASE_64_69B = ForeignKeys0.FK_X_TEST_CASE_64_69B;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_71Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record> FK_X_TEST_CASE_71 = ForeignKeys0.FK_X_TEST_CASE_71;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_85Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord> FK_X_TEST_CASE_85 = ForeignKeys0.FK_X_TEST_CASE_85;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord, org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord> FK_X_UNUSED_SELF = ForeignKeys0.FK_X_UNUSED_SELF;
|
||||
@ -93,8 +95,10 @@ public class Keys {
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.TBookToBookStoreRecord, org.jooq.test.oracle.generatedclasses.test.tables.records.TBookRecord> FK_B2BS_B_ID = createForeignKey(org.jooq.test.oracle.generatedclasses.test.Keys.PK_T_BOOK, org.jooq.test.oracle.generatedclasses.test.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE, org.jooq.test.oracle.generatedclasses.test.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE.BOOK_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.TDirectoryRecord, org.jooq.test.oracle.generatedclasses.test.tables.records.TDirectoryRecord> PK_T_DIRECTORY_SELF = createForeignKey(org.jooq.test.oracle.generatedclasses.test.Keys.PK_T_DIRECTORY, org.jooq.test.oracle.generatedclasses.test.tables.TDirectory.T_DIRECTORY, org.jooq.test.oracle.generatedclasses.test.tables.TDirectory.T_DIRECTORY.PARENT_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_2025Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_85Record> FK_X_TEST_CASE_2025_1 = createForeignKey(org.jooq.test.oracle.generatedclasses.test.Keys.PK_X_TEST_CASE_85, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_2025.X_TEST_CASE_2025, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_2025.X_TEST_CASE_2025.REF_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_2025Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_71Record> FK_X_TEST_CASE_2025_2 = createForeignKey(org.jooq.test.oracle.generatedclasses.test.Keys.PK_X_TEST_CASE_71, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_2025.X_TEST_CASE_2025, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_2025.X_TEST_CASE_2025.REF_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_2025Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord> FK_X_TEST_CASE_2025_3 = createForeignKey(org.jooq.test.oracle.generatedclasses.test.Keys.PK_X_UNUSED, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_2025.X_TEST_CASE_2025, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_2025.X_TEST_CASE_2025.REF_ID, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_2025.X_TEST_CASE_2025.REF_NAME);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord> FK_X_TEST_CASE_64_69A = createForeignKey(org.jooq.test.oracle.generatedclasses.test.Keys.UK_X_UNUSED_ID, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69.UNUSED_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord> FK_X_TEST_CASE_64_69B = createForeignKey(org.jooq.test.oracle.generatedclasses.test.Keys.UK_X_UNUSED_ID, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69.UNUSED_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_71Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record> FK_X_TEST_CASE_71 = createForeignKey(org.jooq.test.oracle.generatedclasses.test.Keys.PK_X_TEST_CASE_64_69, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_71.X_TEST_CASE_71, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_71.X_TEST_CASE_71.TEST_CASE_64_69_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_85Record, org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord> FK_X_TEST_CASE_85 = createForeignKey(org.jooq.test.oracle.generatedclasses.test.Keys.PK_X_UNUSED, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_85.X_TEST_CASE_85, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_85.X_TEST_CASE_85.X_UNUSED_ID, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_85.X_TEST_CASE_85.X_UNUSED_NAME);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord, org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord> FK_X_UNUSED_SELF = createForeignKey(org.jooq.test.oracle.generatedclasses.test.Keys.PK_X_UNUSED, org.jooq.test.oracle.generatedclasses.test.tables.XUnused.X_UNUSED, org.jooq.test.oracle.generatedclasses.test.tables.XUnused.X_UNUSED.ID_REF, org.jooq.test.oracle.generatedclasses.test.tables.XUnused.X_UNUSED.NAME_REF);
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_2025 extends org.jooq.impl.TableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_2025Record> {
|
||||
|
||||
private static final long serialVersionUID = -635967471;
|
||||
private static final long serialVersionUID = 366952732;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.X_TEST_CASE_2025</code>
|
||||
@ -53,7 +53,7 @@ public class XTestCase_2025 extends org.jooq.impl.TableImpl<org.jooq.test.oracle
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_2025Record, ?>> getReferences() {
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_2025Record, ?>>asList(org.jooq.test.oracle.generatedclasses.test.Keys.FK_X_TEST_CASE_2025_1, org.jooq.test.oracle.generatedclasses.test.Keys.FK_X_TEST_CASE_2025_3);
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_2025Record, ?>>asList(org.jooq.test.oracle.generatedclasses.test.Keys.FK_X_TEST_CASE_2025_1, org.jooq.test.oracle.generatedclasses.test.Keys.FK_X_TEST_CASE_2025_2, org.jooq.test.oracle.generatedclasses.test.Keys.FK_X_TEST_CASE_2025_3);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record> {
|
||||
|
||||
private static final long serialVersionUID = -1286158602;
|
||||
private static final long serialVersionUID = 1120017027;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.X_TEST_CASE_64_69</code>
|
||||
@ -69,7 +69,7 @@ public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.t
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record, ?>> getReferences() {
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record, ?>>asList(org.jooq.test.oracle.generatedclasses.test.Keys.FK_X_TEST_CASE_64_69A);
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record, ?>>asList(org.jooq.test.oracle.generatedclasses.test.Keys.FK_X_TEST_CASE_64_69A, org.jooq.test.oracle.generatedclasses.test.Keys.FK_X_TEST_CASE_64_69B);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -13,7 +13,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records;
|
||||
@javax.persistence.Table(name = "T_BOOK", schema = "TEST")
|
||||
public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TBookRecord> implements org.jooq.Record9<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[]> {
|
||||
|
||||
private static final long serialVersionUID = 392731193;
|
||||
private static final long serialVersionUID = 996973120;
|
||||
|
||||
/**
|
||||
* Setter for <code>TEST.T_BOOK.ID</code>. The book ID
|
||||
@ -38,18 +38,6 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.AUTHOR_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.oracle.generatedclasses.test.tables.records.TAuthorRecord}
|
||||
*/
|
||||
public void setAuthorId(org.jooq.test.oracle.generatedclasses.test.tables.records.TAuthorRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.AUTHOR_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.AUTHOR_ID, value.getValue(org.jooq.test.oracle.generatedclasses.test.tables.TAuthor.T_AUTHOR.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>TEST.T_BOOK.AUTHOR_ID</code>. The author ID in entity 'author'
|
||||
*/
|
||||
@ -65,18 +53,6 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.CO_AUTHOR_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.oracle.generatedclasses.test.tables.records.TAuthorRecord}
|
||||
*/
|
||||
public void setCoAuthorId(org.jooq.test.oracle.generatedclasses.test.tables.records.TAuthorRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.CO_AUTHOR_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.CO_AUTHOR_ID, value.getValue(org.jooq.test.oracle.generatedclasses.test.tables.TAuthor.T_AUTHOR.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>TEST.T_BOOK.CO_AUTHOR_ID</code>.
|
||||
*/
|
||||
@ -137,18 +113,6 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.LANGUAGE_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.oracle.generatedclasses.test.tables.records.TLanguageRecord}
|
||||
*/
|
||||
public void setLanguageId(org.jooq.test.oracle.generatedclasses.test.tables.records.TLanguageRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.LANGUAGE_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.LANGUAGE_ID, value.getValue(org.jooq.test.oracle.generatedclasses.test.tables.TLanguage.T_LANGUAGE.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>TEST.T_BOOK.LANGUAGE_ID</code>. The language of the book
|
||||
*/
|
||||
@ -202,7 +166,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.T_AUTHOR</code> referenced by this <code>TEST.T_BOOK</code>
|
||||
* Fetch a record from <code>TEST.T_AUTHOR</code> referenced from <code>TEST.T_BOOK</code> through <code>TEST.FK_T_BOOK_AUTHOR_ID</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.TAuthorRecord fetchTAuthorByAuthorId() {
|
||||
return create()
|
||||
@ -212,7 +176,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.T_AUTHOR</code> referenced by this <code>TEST.T_BOOK</code>
|
||||
* Fetch a record from <code>TEST.T_AUTHOR</code> referenced from <code>TEST.T_BOOK</code> through <code>TEST.FK_T_BOOK_CO_AUTHOR_ID</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() {
|
||||
return create()
|
||||
@ -222,7 +186,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.T_LANGUAGE</code> referenced by this <code>TEST.T_BOOK</code>
|
||||
* Fetch a record from <code>TEST.T_LANGUAGE</code> referenced from <code>TEST.T_BOOK</code> through <code>TEST.FK_T_BOOK_LANGUAGE_ID</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.TLanguageRecord fetchTLanguage() {
|
||||
return create()
|
||||
|
||||
@ -15,7 +15,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records;
|
||||
})
|
||||
public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TBookToBookStoreRecord> implements org.jooq.Record3<java.lang.String, java.lang.Integer, java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = 1124190848;
|
||||
private static final long serialVersionUID = -2133969431;
|
||||
|
||||
/**
|
||||
* Setter for <code>TEST.T_BOOK_TO_BOOK_STORE.BOOK_STORE_NAME</code>. The book store name
|
||||
@ -24,18 +24,6 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<or
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE.BOOK_STORE_NAME, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.oracle.generatedclasses.test.tables.records.TBookStoreRecord}
|
||||
*/
|
||||
public void setBookStoreName(org.jooq.test.oracle.generatedclasses.test.tables.records.TBookStoreRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE.BOOK_STORE_NAME, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE.BOOK_STORE_NAME, value.getValue(org.jooq.test.oracle.generatedclasses.test.tables.TBookStore.T_BOOK_STORE.NAME));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>TEST.T_BOOK_TO_BOOK_STORE.BOOK_STORE_NAME</code>. The book store name
|
||||
*/
|
||||
@ -51,18 +39,6 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<or
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE.BOOK_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.oracle.generatedclasses.test.tables.records.TBookRecord}
|
||||
*/
|
||||
public void setBookId(org.jooq.test.oracle.generatedclasses.test.tables.records.TBookRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE.BOOK_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE.BOOK_ID, value.getValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>TEST.T_BOOK_TO_BOOK_STORE.BOOK_ID</code>. The book ID
|
||||
*/
|
||||
@ -102,7 +78,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<or
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.T_BOOK_STORE</code> referenced by this <code>TEST.T_BOOK_TO_BOOK_STORE</code>
|
||||
* Fetch a record from <code>TEST.T_BOOK_STORE</code> referenced from <code>TEST.T_BOOK_TO_BOOK_STORE</code> through <code>TEST.FK_B2BS_BS_NAME</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.TBookStoreRecord fetchTBookStore() {
|
||||
return create()
|
||||
@ -112,7 +88,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<or
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.T_BOOK</code> referenced by this <code>TEST.T_BOOK_TO_BOOK_STORE</code>
|
||||
* Fetch a record from <code>TEST.T_BOOK</code> referenced from <code>TEST.T_BOOK_TO_BOOK_STORE</code> through <code>TEST.FK_B2BS_B_ID</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.TBookRecord fetchTBook() {
|
||||
return create()
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records;
|
||||
@javax.persistence.Table(name = "T_DIRECTORY", schema = "TEST")
|
||||
public class TDirectoryRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TDirectoryRecord> implements org.jooq.Record4<java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = -1991682039;
|
||||
private static final long serialVersionUID = 1534064625;
|
||||
|
||||
/**
|
||||
* Setter for <code>TEST.T_DIRECTORY.ID</code>.
|
||||
@ -36,18 +36,6 @@ public class TDirectoryRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TDirectory.T_DIRECTORY.PARENT_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.oracle.generatedclasses.test.tables.records.TDirectoryRecord}
|
||||
*/
|
||||
public void setParentId(org.jooq.test.oracle.generatedclasses.test.tables.records.TDirectoryRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TDirectory.T_DIRECTORY.PARENT_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.TDirectory.T_DIRECTORY.PARENT_ID, value.getValue(org.jooq.test.oracle.generatedclasses.test.tables.TDirectory.T_DIRECTORY.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>TEST.T_DIRECTORY.PARENT_ID</code>.
|
||||
*/
|
||||
@ -101,7 +89,7 @@ public class TDirectoryRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.T_DIRECTORY</code> referenced by this <code>TEST.T_DIRECTORY</code>
|
||||
* Fetch a record from <code>TEST.T_DIRECTORY</code> referenced from <code>TEST.T_DIRECTORY</code> through <code>TEST.PK_T_DIRECTORY_SELF</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.TDirectoryRecord fetchTDirectory() {
|
||||
return create()
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records;
|
||||
@javax.persistence.Table(name = "X_TEST_CASE_2025", schema = "TEST")
|
||||
public class XTestCase_2025Record extends org.jooq.impl.TableRecordImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_2025Record> implements org.jooq.Record2<java.lang.Integer, java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = 1368124714;
|
||||
private static final long serialVersionUID = -1068292628;
|
||||
|
||||
/**
|
||||
* Setter for <code>TEST.X_TEST_CASE_2025.REF_ID</code>.
|
||||
@ -20,18 +20,6 @@ public class XTestCase_2025Record extends org.jooq.impl.TableRecordImpl<org.jooq
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_2025.X_TEST_CASE_2025.REF_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_85Record}
|
||||
*/
|
||||
public void setRefId(org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_85Record value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_2025.X_TEST_CASE_2025.REF_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_2025.X_TEST_CASE_2025.REF_ID, value.getValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_85.X_TEST_CASE_85.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>TEST.X_TEST_CASE_2025.REF_ID</code>.
|
||||
*/
|
||||
@ -60,7 +48,7 @@ public class XTestCase_2025Record extends org.jooq.impl.TableRecordImpl<org.jooq
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.X_TEST_CASE_85</code> referenced by this <code>TEST.X_TEST_CASE_2025</code>
|
||||
* Fetch a record from <code>TEST.X_TEST_CASE_85</code> referenced from <code>TEST.X_TEST_CASE_2025</code> through <code>TEST.FK_X_TEST_CASE_2025_1</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_85Record fetchXTestCase_85() {
|
||||
return create()
|
||||
@ -70,7 +58,17 @@ public class XTestCase_2025Record extends org.jooq.impl.TableRecordImpl<org.jooq
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.X_UNUSED</code> referenced by this <code>TEST.X_TEST_CASE_2025</code>
|
||||
* Fetch a record from <code>TEST.X_TEST_CASE_71</code> referenced from <code>TEST.X_TEST_CASE_2025</code> through <code>TEST.FK_X_TEST_CASE_2025_2</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_71Record fetchXTestCase_71() {
|
||||
return create()
|
||||
.selectFrom(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_71.X_TEST_CASE_71)
|
||||
.where(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_71.X_TEST_CASE_71.ID.equal(getValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_2025.X_TEST_CASE_2025.REF_ID)))
|
||||
.fetchOne();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a record from <code>TEST.X_UNUSED</code> referenced from <code>TEST.X_TEST_CASE_2025</code> through <code>TEST.FK_X_TEST_CASE_2025_3</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord fetchXUnused() {
|
||||
return create()
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records;
|
||||
@javax.persistence.Table(name = "X_TEST_CASE_64_69", schema = "TEST")
|
||||
public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record> implements org.jooq.Record2<java.lang.Integer, java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -509551484;
|
||||
private static final long serialVersionUID = 1629132472;
|
||||
|
||||
/**
|
||||
* Setter for <code>TEST.X_TEST_CASE_64_69.ID</code>.
|
||||
@ -36,18 +36,6 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl<org
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69.UNUSED_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord}
|
||||
*/
|
||||
public void setUnusedId(org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69.UNUSED_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69.UNUSED_ID, value.getValue(org.jooq.test.oracle.generatedclasses.test.tables.XUnused.X_UNUSED.ID));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>TEST.X_TEST_CASE_64_69.UNUSED_ID</code>.
|
||||
*/
|
||||
@ -71,9 +59,19 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl<org
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.X_UNUSED</code> referenced by this <code>TEST.X_TEST_CASE_64_69</code>
|
||||
* Fetch a record from <code>TEST.X_UNUSED</code> referenced from <code>TEST.X_TEST_CASE_64_69</code> through <code>TEST.FK_X_TEST_CASE_64_69A</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord fetchXUnused() {
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord fetchXUnusedByUnusedId() {
|
||||
return create()
|
||||
.selectFrom(org.jooq.test.oracle.generatedclasses.test.tables.XUnused.X_UNUSED)
|
||||
.where(org.jooq.test.oracle.generatedclasses.test.tables.XUnused.X_UNUSED.ID.equal(getValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69.UNUSED_ID)))
|
||||
.fetchOne();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a record from <code>TEST.X_UNUSED</code> referenced from <code>TEST.X_TEST_CASE_64_69</code> through <code>TEST.FK_X_TEST_CASE_64_69B</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord fetchXUnusedByUnusedId() {
|
||||
return create()
|
||||
.selectFrom(org.jooq.test.oracle.generatedclasses.test.tables.XUnused.X_UNUSED)
|
||||
.where(org.jooq.test.oracle.generatedclasses.test.tables.XUnused.X_UNUSED.ID.equal(getValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69.UNUSED_ID)))
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records;
|
||||
@javax.persistence.Table(name = "X_TEST_CASE_71", schema = "TEST")
|
||||
public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_71Record> implements org.jooq.Record2<java.lang.Integer, java.lang.Short> {
|
||||
|
||||
private static final long serialVersionUID = 607244762;
|
||||
private static final long serialVersionUID = -8809260;
|
||||
|
||||
/**
|
||||
* Setter for <code>TEST.X_TEST_CASE_71.ID</code>.
|
||||
@ -36,18 +36,6 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl<org.jo
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_71.X_TEST_CASE_71.TEST_CASE_64_69_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Link this record to a given {@link org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record}
|
||||
*/
|
||||
public void setTestCase_64_69Id(org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record value) {
|
||||
if (value == null) {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_71.X_TEST_CASE_71.TEST_CASE_64_69_ID, null);
|
||||
}
|
||||
else {
|
||||
setValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_71.X_TEST_CASE_71.TEST_CASE_64_69_ID, value.getValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69.ID, Short.class));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>TEST.X_TEST_CASE_71.TEST_CASE_64_69_ID</code>.
|
||||
*/
|
||||
@ -71,7 +59,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl<org.jo
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.X_TEST_CASE_64_69</code> referenced by this <code>TEST.X_TEST_CASE_71</code>
|
||||
* Fetch a record from <code>TEST.X_TEST_CASE_64_69</code> referenced from <code>TEST.X_TEST_CASE_71</code> through <code>TEST.FK_X_TEST_CASE_71</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() {
|
||||
return create()
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records;
|
||||
@javax.persistence.Table(name = "X_TEST_CASE_85", schema = "TEST")
|
||||
public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_85Record> implements org.jooq.Record3<java.lang.Integer, java.lang.Integer, java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = -1064494554;
|
||||
private static final long serialVersionUID = 411129556;
|
||||
|
||||
/**
|
||||
* Setter for <code>TEST.X_TEST_CASE_85.ID</code>.
|
||||
@ -74,7 +74,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl<org.jo
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.X_UNUSED</code> referenced by this <code>TEST.X_TEST_CASE_85</code>
|
||||
* Fetch a record from <code>TEST.X_UNUSED</code> referenced from <code>TEST.X_TEST_CASE_85</code> through <code>TEST.FK_X_TEST_CASE_85</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord fetchXUnused() {
|
||||
return create()
|
||||
|
||||
@ -15,7 +15,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records;
|
||||
})
|
||||
public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord> implements org.jooq.Record16<java.lang.Integer, java.lang.String, java.math.BigInteger, 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.String, java.math.BigDecimal, java.lang.Integer, java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = 295788761;
|
||||
private static final long serialVersionUID = -271279393;
|
||||
|
||||
/**
|
||||
* Setter for <code>TEST.X_UNUSED.ID</code>.
|
||||
@ -297,7 +297,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
/**
|
||||
* Fetch a list of <code>TEST.X_TEST_CASE_64_69</code> referencing this <code>TEST.X_UNUSED</code>
|
||||
*/
|
||||
public org.jooq.Result<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record> fetchXTestCase_64_69List() {
|
||||
public org.jooq.Result<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record> fetchXTestCase_64_69ListByUnusedId() {
|
||||
return create()
|
||||
.selectFrom(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69)
|
||||
.where(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69.UNUSED_ID.equal(getValue(org.jooq.test.oracle.generatedclasses.test.tables.XUnused.X_UNUSED.ID)))
|
||||
@ -305,7 +305,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a <code>TEST.X_UNUSED</code> referenced by this <code>TEST.X_UNUSED</code>
|
||||
* Fetch a record from <code>TEST.X_UNUSED</code> referenced from <code>TEST.X_UNUSED</code> through <code>TEST.FK_X_UNUSED_SELF</code>
|
||||
*/
|
||||
public org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord fetchXUnused() {
|
||||
return create()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user