/** * This class is generated by jOOQ */ package io.cattle.platform.core.model.tables; /** * This class is generated by jOOQ. */ @javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" }, comments = "This class is generated by jOOQ") @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class ConfigItemTable extends org.jooq.impl.TableImpl<io.cattle.platform.core.model.tables.records.ConfigItemRecord> { private static final long serialVersionUID = -1588202918; /** * The singleton instance of <code>cattle.config_item</code> */ public static final io.cattle.platform.core.model.tables.ConfigItemTable CONFIG_ITEM = new io.cattle.platform.core.model.tables.ConfigItemTable(); /** * The class holding records for this type */ @Override public java.lang.Class<io.cattle.platform.core.model.tables.records.ConfigItemRecord> getRecordType() { return io.cattle.platform.core.model.tables.records.ConfigItemRecord.class; } /** * The column <code>cattle.config_item.id</code>. */ public final org.jooq.TableField<io.cattle.platform.core.model.tables.records.ConfigItemRecord, java.lang.Long> ID = createField("id", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this, ""); /** * The column <code>cattle.config_item.name</code>. */ public final org.jooq.TableField<io.cattle.platform.core.model.tables.records.ConfigItemRecord, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR.length(255).nullable(false), this, ""); /** * The column <code>cattle.config_item.source_version</code>. */ public final org.jooq.TableField<io.cattle.platform.core.model.tables.records.ConfigItemRecord, java.lang.String> SOURCE_VERSION = createField("source_version", org.jooq.impl.SQLDataType.VARCHAR.length(1024).nullable(false), this, ""); /** * Create a <code>cattle.config_item</code> table reference */ public ConfigItemTable() { this("config_item", null); } /** * Create an aliased <code>cattle.config_item</code> table reference */ public ConfigItemTable(java.lang.String alias) { this(alias, io.cattle.platform.core.model.tables.ConfigItemTable.CONFIG_ITEM); } private ConfigItemTable(java.lang.String alias, org.jooq.Table<io.cattle.platform.core.model.tables.records.ConfigItemRecord> aliased) { this(alias, aliased, null); } private ConfigItemTable(java.lang.String alias, org.jooq.Table<io.cattle.platform.core.model.tables.records.ConfigItemRecord> aliased, org.jooq.Field<?>[] parameters) { super(alias, io.cattle.platform.core.model.CattleTable.CATTLE, aliased, parameters, ""); } /** * {@inheritDoc} */ @Override public org.jooq.Identity<io.cattle.platform.core.model.tables.records.ConfigItemRecord, java.lang.Long> getIdentity() { return io.cattle.platform.core.model.Keys.IDENTITY_CONFIG_ITEM; } /** * {@inheritDoc} */ @Override public org.jooq.UniqueKey<io.cattle.platform.core.model.tables.records.ConfigItemRecord> getPrimaryKey() { return io.cattle.platform.core.model.Keys.KEY_CONFIG_ITEM_PRIMARY; } /** * {@inheritDoc} */ @Override public java.util.List<org.jooq.UniqueKey<io.cattle.platform.core.model.tables.records.ConfigItemRecord>> getKeys() { return java.util.Arrays.<org.jooq.UniqueKey<io.cattle.platform.core.model.tables.records.ConfigItemRecord>>asList(io.cattle.platform.core.model.Keys.KEY_CONFIG_ITEM_PRIMARY, io.cattle.platform.core.model.Keys.KEY_CONFIG_ITEM_IDX_CONFIG_ITEM__NAME); } /** * {@inheritDoc} */ @Override public io.cattle.platform.core.model.tables.ConfigItemTable as(java.lang.String alias) { return new io.cattle.platform.core.model.tables.ConfigItemTable(alias, this); } /** * Rename this table */ public io.cattle.platform.core.model.tables.ConfigItemTable rename(java.lang.String name) { return new io.cattle.platform.core.model.tables.ConfigItemTable(name, null); } }