/** * This class is generated by jOOQ */ package org.jooq.util.postgres.pg_catalog.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.pg_catalog.PgCatalog; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.8.0" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class PgAttribute extends TableImpl<Record> { private static final long serialVersionUID = -1595093218; /** * The reference instance of <code>pg_catalog.pg_attribute</code> */ public static final PgAttribute PG_ATTRIBUTE = new PgAttribute(); /** * The class holding records for this type */ @Override public Class<Record> getRecordType() { return Record.class; } /** * The column <code>pg_catalog.pg_attribute.attrelid</code>. */ public final TableField<Record, Long> ATTRELID = createField("attrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attname</code>. */ public final TableField<Record, String> ATTNAME = createField("attname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.atttypid</code>. */ public final TableField<Record, Long> ATTTYPID = createField("atttypid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attstattarget</code>. */ public final TableField<Record, Integer> ATTSTATTARGET = createField("attstattarget", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attlen</code>. */ public final TableField<Record, Short> ATTLEN = createField("attlen", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attnum</code>. */ public final TableField<Record, Short> ATTNUM = createField("attnum", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attndims</code>. */ public final TableField<Record, Integer> ATTNDIMS = createField("attndims", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attcacheoff</code>. */ public final TableField<Record, Integer> ATTCACHEOFF = createField("attcacheoff", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.atttypmod</code>. */ public final TableField<Record, Integer> ATTTYPMOD = createField("atttypmod", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attbyval</code>. */ public final TableField<Record, Boolean> ATTBYVAL = createField("attbyval", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attstorage</code>. */ public final TableField<Record, String> ATTSTORAGE = createField("attstorage", org.jooq.impl.SQLDataType.CHAR.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attalign</code>. */ public final TableField<Record, String> ATTALIGN = createField("attalign", org.jooq.impl.SQLDataType.CHAR.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attnotnull</code>. */ public final TableField<Record, Boolean> ATTNOTNULL = createField("attnotnull", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.atthasdef</code>. */ public final TableField<Record, Boolean> ATTHASDEF = createField("atthasdef", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attisdropped</code>. */ public final TableField<Record, Boolean> ATTISDROPPED = createField("attisdropped", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attislocal</code>. */ public final TableField<Record, Boolean> ATTISLOCAL = createField("attislocal", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attinhcount</code>. */ public final TableField<Record, Integer> ATTINHCOUNT = createField("attinhcount", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attcollation</code>. */ public final TableField<Record, Long> ATTCOLLATION = createField("attcollation", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this, ""); /** * The column <code>pg_catalog.pg_attribute.attacl</code>. */ public final TableField<Record, String[]> ATTACL = createField("attacl", org.jooq.impl.SQLDataType.VARCHAR.getArrayDataType(), this, ""); /** * The column <code>pg_catalog.pg_attribute.attoptions</code>. */ public final TableField<Record, String[]> ATTOPTIONS = createField("attoptions", org.jooq.impl.SQLDataType.CLOB.getArrayDataType(), this, ""); /** * The column <code>pg_catalog.pg_attribute.attfdwoptions</code>. */ public final TableField<Record, String[]> ATTFDWOPTIONS = createField("attfdwoptions", org.jooq.impl.SQLDataType.CLOB.getArrayDataType(), this, ""); /** * Create a <code>pg_catalog.pg_attribute</code> table reference */ public PgAttribute() { this("pg_attribute", null); } /** * Create an aliased <code>pg_catalog.pg_attribute</code> table reference */ public PgAttribute(String alias) { this(alias, PG_ATTRIBUTE); } private PgAttribute(String alias, Table<Record> aliased) { this(alias, aliased, null); } private PgAttribute(String alias, Table<Record> aliased, Field<?>[] parameters) { super(alias, PgCatalog.PG_CATALOG, aliased, parameters, ""); } /** * {@inheritDoc} */ @Override public PgAttribute as(String alias) { return new PgAttribute(alias, this); } /** * Rename this table */ public PgAttribute rename(String name) { return new PgAttribute(name, null); } }