/** * This class is generated by jOOQ */ package org.jooq.util.postgres.information_schema; import javax.annotation.Generated; import org.jooq.util.postgres.information_schema.tables.Attributes; import org.jooq.util.postgres.information_schema.tables.CheckConstraints; import org.jooq.util.postgres.information_schema.tables.Columns; import org.jooq.util.postgres.information_schema.tables.ConstraintColumnUsage; import org.jooq.util.postgres.information_schema.tables.KeyColumnUsage; import org.jooq.util.postgres.information_schema.tables.Parameters; import org.jooq.util.postgres.information_schema.tables.ReferentialConstraints; import org.jooq.util.postgres.information_schema.tables.Routines; import org.jooq.util.postgres.information_schema.tables.Schemata; import org.jooq.util.postgres.information_schema.tables.Sequences; import org.jooq.util.postgres.information_schema.tables.TableConstraints; /** * Convenience access to all tables in information_schema */ @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 { /** * The table information_schema.attributes */ public static final Attributes ATTRIBUTES = org.jooq.util.postgres.information_schema.tables.Attributes.ATTRIBUTES; /** * The table information_schema.check_constraints */ public static final CheckConstraints CHECK_CONSTRAINTS = org.jooq.util.postgres.information_schema.tables.CheckConstraints.CHECK_CONSTRAINTS; /** * The table information_schema.columns */ public static final Columns COLUMNS = org.jooq.util.postgres.information_schema.tables.Columns.COLUMNS; /** * The table information_schema.constraint_column_usage */ public static final ConstraintColumnUsage CONSTRAINT_COLUMN_USAGE = org.jooq.util.postgres.information_schema.tables.ConstraintColumnUsage.CONSTRAINT_COLUMN_USAGE; /** * The table information_schema.key_column_usage */ public static final KeyColumnUsage KEY_COLUMN_USAGE = org.jooq.util.postgres.information_schema.tables.KeyColumnUsage.KEY_COLUMN_USAGE; /** * The table information_schema.parameters */ public static final Parameters PARAMETERS = org.jooq.util.postgres.information_schema.tables.Parameters.PARAMETERS; /** * The table information_schema.referential_constraints */ public static final ReferentialConstraints REFERENTIAL_CONSTRAINTS = org.jooq.util.postgres.information_schema.tables.ReferentialConstraints.REFERENTIAL_CONSTRAINTS; /** * The table information_schema.routines */ public static final Routines ROUTINES = org.jooq.util.postgres.information_schema.tables.Routines.ROUTINES; /** * The table information_schema.schemata */ public static final Schemata SCHEMATA = org.jooq.util.postgres.information_schema.tables.Schemata.SCHEMATA; /** * The table information_schema.sequences */ public static final Sequences SEQUENCES = org.jooq.util.postgres.information_schema.tables.Sequences.SEQUENCES; /** * The table information_schema.table_constraints */ public static final TableConstraints TABLE_CONSTRAINTS = org.jooq.util.postgres.information_schema.tables.TableConstraints.TABLE_CONSTRAINTS; /** * The table information_schema.tables */ public static final org.jooq.util.postgres.information_schema.tables.Tables TABLES = org.jooq.util.postgres.information_schema.tables.Tables.TABLES; }