/** * This class is generated by jOOQ */ package org.jooq.example.gradle.db.information_schema; /** * This class is generated by jOOQ. */ @javax.annotation.Generated(value = { "http://www.jooq.org", "3.5.0" }, comments = "This class is generated by jOOQ") @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class InformationSchema extends org.jooq.impl.SchemaImpl { private static final long serialVersionUID = 721284244; /** * The singleton instance of <code>INFORMATION_SCHEMA</code> */ public static final InformationSchema INFORMATION_SCHEMA = new InformationSchema(); /** * No further instances allowed */ private InformationSchema() { super("INFORMATION_SCHEMA"); } @Override public final java.util.List<org.jooq.Table<?>> getTables() { java.util.List result = new java.util.ArrayList(); result.addAll(getTables0()); return result; } private final java.util.List<org.jooq.Table<?>> getTables0() { return java.util.Arrays.<org.jooq.Table<?>>asList( org.jooq.example.gradle.db.information_schema.tables.QueryStatistics.QUERY_STATISTICS, org.jooq.example.gradle.db.information_schema.tables.SessionState.SESSION_STATE, org.jooq.example.gradle.db.information_schema.tables.Locks.LOCKS, org.jooq.example.gradle.db.information_schema.tables.Sessions.SESSIONS, org.jooq.example.gradle.db.information_schema.tables.Triggers.TRIGGERS, org.jooq.example.gradle.db.information_schema.tables.Domains.DOMAINS, org.jooq.example.gradle.db.information_schema.tables.Constants.CONSTANTS, org.jooq.example.gradle.db.information_schema.tables.FunctionColumns.FUNCTION_COLUMNS, org.jooq.example.gradle.db.information_schema.tables.Constraints.CONSTRAINTS, org.jooq.example.gradle.db.information_schema.tables.CrossReferences.CROSS_REFERENCES, org.jooq.example.gradle.db.information_schema.tables.InDoubt.IN_DOUBT, org.jooq.example.gradle.db.information_schema.tables.Views.VIEWS, org.jooq.example.gradle.db.information_schema.tables.Collations.COLLATIONS, org.jooq.example.gradle.db.information_schema.tables.ColumnPrivileges.COLUMN_PRIVILEGES, org.jooq.example.gradle.db.information_schema.tables.TablePrivileges.TABLE_PRIVILEGES, org.jooq.example.gradle.db.information_schema.tables.Schemata.SCHEMATA, org.jooq.example.gradle.db.information_schema.tables.FunctionAliases.FUNCTION_ALIASES, org.jooq.example.gradle.db.information_schema.tables.Rights.RIGHTS, org.jooq.example.gradle.db.information_schema.tables.Roles.ROLES, org.jooq.example.gradle.db.information_schema.tables.Users.USERS, org.jooq.example.gradle.db.information_schema.tables.Sequences.SEQUENCES, org.jooq.example.gradle.db.information_schema.tables.Help.HELP, org.jooq.example.gradle.db.information_schema.tables.Settings.SETTINGS, org.jooq.example.gradle.db.information_schema.tables.Catalogs.CATALOGS, org.jooq.example.gradle.db.information_schema.tables.TypeInfo.TYPE_INFO, org.jooq.example.gradle.db.information_schema.tables.TableTypes.TABLE_TYPES, org.jooq.example.gradle.db.information_schema.tables.Indexes.INDEXES, org.jooq.example.gradle.db.information_schema.tables.Columns.COLUMNS, org.jooq.example.gradle.db.information_schema.tables.Tables.TABLES); } }