/** * This class is generated by jOOQ */ package sample.jooq.domain; import java.util.Arrays; import java.util.List; import javax.annotation.Generated; import org.jooq.Field; import org.jooq.ForeignKey; import org.jooq.Record; import org.jooq.Schema; import org.jooq.Table; import org.jooq.TableField; import org.jooq.UniqueKey; import org.jooq.impl.TableImpl; /** * This class is generated by jOOQ. */ @Generated(value = { "http://www.jooq.org", "jOOQ version:3.8.2" }, comments = "This class is generated by jOOQ") @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class Book extends TableImpl { private static final long serialVersionUID = 1176189796; /** * The reference instance of PUBLIC.BOOK */ public static final Book BOOK = new Book(); /** * The class holding records for this type */ @Override public Class getRecordType() { return Record.class; } /** * The column PUBLIC.BOOK.ID. */ public final TableField ID = createField("ID", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); /** * The column PUBLIC.BOOK.AUTHOR_ID. */ public final TableField AUTHOR_ID = createField("AUTHOR_ID", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); /** * The column PUBLIC.BOOK.TITLE. */ public final TableField TITLE = createField("TITLE", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, ""); /** * The column PUBLIC.BOOK.PUBLISHED_IN. */ public final TableField PUBLISHED_IN = createField("PUBLISHED_IN", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); /** * The column PUBLIC.BOOK.LANGUAGE_ID. */ public final TableField LANGUAGE_ID = createField("LANGUAGE_ID", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); /** * Create a PUBLIC.BOOK table reference */ public Book() { this("BOOK", null); } /** * Create an aliased PUBLIC.BOOK table reference */ public Book(String alias) { this(alias, BOOK); } private Book(String alias, Table aliased) { this(alias, aliased, null); } private Book(String alias, Table aliased, Field[] parameters) { super(alias, null, aliased, parameters, ""); } /** * {@inheritDoc} */ @Override public Schema getSchema() { return Public.PUBLIC; } /** * {@inheritDoc} */ @Override public UniqueKey getPrimaryKey() { return Keys.CONSTRAINT_1; } /** * {@inheritDoc} */ @Override public List> getKeys() { return Arrays.>asList(Keys.CONSTRAINT_1); } /** * {@inheritDoc} */ @Override public List> getReferences() { return Arrays.>asList(Keys.FK_BOOK_AUTHOR, Keys.FK_BOOK_LANGUAGE); } /** * {@inheritDoc} */ @Override public Book as(String alias) { return new Book(alias, this); } /** * Rename this table */ @Override public Book rename(String name) { return new Book(name, null); } }