/** * This class is generated by jOOQ */ package org.jooq.util.postgres.information_schema.tables; import javax.annotation.Generated; import org.jooq.Field; import org.jooq.Record; import org.jooq.Table; import org.jooq.TableField; import org.jooq.impl.TableImpl; import org.jooq.util.postgres.information_schema.InformationSchema; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.6.0" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class Tables extends TableImpl<Record> { private static final long serialVersionUID = 1600719780; /** * The reference instance of <code>information_schema.tables</code> */ public static final Tables TABLES = new Tables(); /** * The class holding records for this type */ @Override public Class<Record> getRecordType() { return Record.class; } /** * The column <code>information_schema.tables.table_catalog</code>. */ public final TableField<Record, String> TABLE_CATALOG = createField("table_catalog", org.jooq.impl.SQLDataType.VARCHAR, this, ""); /** * The column <code>information_schema.tables.table_schema</code>. */ public final TableField<Record, String> TABLE_SCHEMA = createField("table_schema", org.jooq.impl.SQLDataType.VARCHAR, this, ""); /** * The column <code>information_schema.tables.table_name</code>. */ public final TableField<Record, String> TABLE_NAME = createField("table_name", org.jooq.impl.SQLDataType.VARCHAR, this, ""); /** * The column <code>information_schema.tables.table_type</code>. */ public final TableField<Record, String> TABLE_TYPE = createField("table_type", org.jooq.impl.SQLDataType.VARCHAR, this, ""); /** * The column <code>information_schema.tables.self_referencing_column_name</code>. */ public final TableField<Record, String> SELF_REFERENCING_COLUMN_NAME = createField("self_referencing_column_name", org.jooq.impl.SQLDataType.VARCHAR, this, ""); /** * The column <code>information_schema.tables.reference_generation</code>. */ public final TableField<Record, String> REFERENCE_GENERATION = createField("reference_generation", org.jooq.impl.SQLDataType.VARCHAR, this, ""); /** * The column <code>information_schema.tables.user_defined_type_catalog</code>. */ public final TableField<Record, String> USER_DEFINED_TYPE_CATALOG = createField("user_defined_type_catalog", org.jooq.impl.SQLDataType.VARCHAR, this, ""); /** * The column <code>information_schema.tables.user_defined_type_schema</code>. */ public final TableField<Record, String> USER_DEFINED_TYPE_SCHEMA = createField("user_defined_type_schema", org.jooq.impl.SQLDataType.VARCHAR, this, ""); /** * The column <code>information_schema.tables.user_defined_type_name</code>. */ public final TableField<Record, String> USER_DEFINED_TYPE_NAME = createField("user_defined_type_name", org.jooq.impl.SQLDataType.VARCHAR, this, ""); /** * The column <code>information_schema.tables.is_insertable_into</code>. */ public final TableField<Record, String> IS_INSERTABLE_INTO = createField("is_insertable_into", org.jooq.impl.SQLDataType.VARCHAR.length(3), this, ""); /** * The column <code>information_schema.tables.is_typed</code>. */ public final TableField<Record, String> IS_TYPED = createField("is_typed", org.jooq.impl.SQLDataType.VARCHAR.length(3), this, ""); /** * The column <code>information_schema.tables.commit_action</code>. */ public final TableField<Record, String> COMMIT_ACTION = createField("commit_action", org.jooq.impl.SQLDataType.VARCHAR, this, ""); /** * Create a <code>information_schema.tables</code> table reference */ public Tables() { this("tables", null); } /** * Create an aliased <code>information_schema.tables</code> table reference */ public Tables(String alias) { this(alias, TABLES); } private Tables(String alias, Table<Record> aliased) { this(alias, aliased, null); } private Tables(String alias, Table<Record> aliased, Field<?>[] parameters) { super(alias, InformationSchema.INFORMATION_SCHEMA, aliased, parameters, ""); } /** * {@inheritDoc} */ @Override public Tables as(String alias) { return new Tables(alias, this); } /** * Rename this table */ public Tables rename(String name) { return new Tables(name, null); } }