/** * This class is generated by jOOQ */ package org.jooq.util.postgres.pg_catalog; import javax.annotation.Generated; import org.jooq.util.postgres.pg_catalog.tables.PgAttrdef; import org.jooq.util.postgres.pg_catalog.tables.PgAttribute; import org.jooq.util.postgres.pg_catalog.tables.PgClass; import org.jooq.util.postgres.pg_catalog.tables.PgCollation; import org.jooq.util.postgres.pg_catalog.tables.PgConstraint; import org.jooq.util.postgres.pg_catalog.tables.PgCursor; import org.jooq.util.postgres.pg_catalog.tables.PgDescription; import org.jooq.util.postgres.pg_catalog.tables.PgEnum; import org.jooq.util.postgres.pg_catalog.tables.PgInherits; import org.jooq.util.postgres.pg_catalog.tables.PgNamespace; import org.jooq.util.postgres.pg_catalog.tables.PgProc; import org.jooq.util.postgres.pg_catalog.tables.PgType; /** * Convenience access to all tables in pg_catalog */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.8.0" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class Tables { /** * The table pg_catalog.pg_attrdef */ public static final PgAttrdef PG_ATTRDEF = org.jooq.util.postgres.pg_catalog.tables.PgAttrdef.PG_ATTRDEF; /** * The table pg_catalog.pg_attribute */ public static final PgAttribute PG_ATTRIBUTE = org.jooq.util.postgres.pg_catalog.tables.PgAttribute.PG_ATTRIBUTE; /** * The table pg_catalog.pg_class */ public static final PgClass PG_CLASS = org.jooq.util.postgres.pg_catalog.tables.PgClass.PG_CLASS; /** * The table pg_catalog.pg_collation */ public static final PgCollation PG_COLLATION = org.jooq.util.postgres.pg_catalog.tables.PgCollation.PG_COLLATION; /** * The table pg_catalog.pg_constraint */ public static final PgConstraint PG_CONSTRAINT = org.jooq.util.postgres.pg_catalog.tables.PgConstraint.PG_CONSTRAINT; /** * The table pg_catalog.pg_cursor */ public static final PgCursor PG_CURSOR = org.jooq.util.postgres.pg_catalog.tables.PgCursor.PG_CURSOR; /** * Get <code>pg_catalog.pg_cursor</code> as a field */ public static PgCursor PG_CURSOR() { return PgCursor.PG_CURSOR.call(); } /** * The table pg_catalog.pg_description */ public static final PgDescription PG_DESCRIPTION = org.jooq.util.postgres.pg_catalog.tables.PgDescription.PG_DESCRIPTION; /** * The table pg_catalog.pg_enum */ public static final PgEnum PG_ENUM = org.jooq.util.postgres.pg_catalog.tables.PgEnum.PG_ENUM; /** * The table pg_catalog.pg_inherits */ public static final PgInherits PG_INHERITS = org.jooq.util.postgres.pg_catalog.tables.PgInherits.PG_INHERITS; /** * The table pg_catalog.pg_namespace */ public static final PgNamespace PG_NAMESPACE = org.jooq.util.postgres.pg_catalog.tables.PgNamespace.PG_NAMESPACE; /** * The table pg_catalog.pg_proc */ public static final PgProc PG_PROC = org.jooq.util.postgres.pg_catalog.tables.PgProc.PG_PROC; /** * The table pg_catalog.pg_type */ public static final PgType PG_TYPE = org.jooq.util.postgres.pg_catalog.tables.PgType.PG_TYPE; }