/* * This file is generated by jOOQ. */ package jooq.tables; import java.sql.Timestamp; import java.util.Arrays; import java.util.List; import javax.annotation.Generated; import jooq.Indexes; import jooq.Keys; import jooq.Thmodel; import jooq.tables.records.ModelintimateRecord; import org.jooq.Field; import org.jooq.ForeignKey; import org.jooq.Identity; import org.jooq.Index; import org.jooq.Name; import org.jooq.Record; import org.jooq.Schema; import org.jooq.Table; import org.jooq.TableField; import org.jooq.UniqueKey; import org.jooq.impl.DSL; import org.jooq.impl.TableImpl; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.11.5" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class Modelintimate extends TableImpl { private static final long serialVersionUID = -507176011; /** * The reference instance of thmodel.modelintimate */ public static final Modelintimate MODELINTIMATE = new Modelintimate(); /** * The class holding records for this type */ @Override public Class getRecordType() { return ModelintimateRecord.class; } /** * The column thmodel.modelintimate.PK. */ public final TableField PK = createField("PK", org.jooq.impl.SQLDataType.INTEGER.nullable(false).identity(true), this, ""); /** * The column thmodel.modelintimate.ModelPK. */ public final TableField MODELPK = createField("ModelPK", org.jooq.impl.SQLDataType.INTEGER, this, ""); /** * The column thmodel.modelintimate.MemberPK. */ public final TableField MEMBERPK = createField("MemberPK", org.jooq.impl.SQLDataType.INTEGER, this, ""); /** * The column thmodel.modelintimate.IDate. */ public final TableField IDATE = createField("IDate", org.jooq.impl.SQLDataType.TIMESTAMP, this, ""); /** * Create a thmodel.modelintimate table reference */ public Modelintimate() { this(DSL.name("modelintimate"), null); } /** * Create an aliased thmodel.modelintimate table reference */ public Modelintimate(String alias) { this(DSL.name(alias), MODELINTIMATE); } /** * Create an aliased thmodel.modelintimate table reference */ public Modelintimate(Name alias) { this(alias, MODELINTIMATE); } private Modelintimate(Name alias, Table aliased) { this(alias, aliased, null); } private Modelintimate(Name alias, Table aliased, Field[] parameters) { super(alias, null, aliased, parameters, DSL.comment("")); } public Modelintimate(Table child, ForeignKey key) { super(child, key, MODELINTIMATE); } /** * {@inheritDoc} */ @Override public Schema getSchema() { return Thmodel.THMODEL; } /** * {@inheritDoc} */ @Override public List getIndexes() { return Arrays.asList(Indexes.MODELINTIMATE_INDEX_1, Indexes.MODELINTIMATE_PRIMARY); } /** * {@inheritDoc} */ @Override public Identity getIdentity() { return Keys.IDENTITY_MODELINTIMATE; } /** * {@inheritDoc} */ @Override public UniqueKey getPrimaryKey() { return Keys.KEY_MODELINTIMATE_PRIMARY; } /** * {@inheritDoc} */ @Override public List> getKeys() { return Arrays.>asList(Keys.KEY_MODELINTIMATE_PRIMARY); } /** * {@inheritDoc} */ @Override public Modelintimate as(String alias) { return new Modelintimate(DSL.name(alias), this); } /** * {@inheritDoc} */ @Override public Modelintimate as(Name alias) { return new Modelintimate(alias, this); } /** * Rename this table */ @Override public Modelintimate rename(String name) { return new Modelintimate(DSL.name(name), null); } /** * Rename this table */ @Override public Modelintimate rename(Name name) { return new Modelintimate(name, null); } }