/** * This class is generated by jOOQ */ package org.jooq.util.hsqldb.information_schema; /** * This class is generated by jOOQ. */ @javax.annotation.Generated(value = { "http://www.jooq.org", "3.4.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 = 392228711; /** * 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.util.hsqldb.information_schema.tables.CheckConstraints.CHECK_CONSTRAINTS, org.jooq.util.hsqldb.information_schema.tables.Columns.COLUMNS, org.jooq.util.hsqldb.information_schema.tables.ElementTypes.ELEMENT_TYPES, org.jooq.util.hsqldb.information_schema.tables.KeyColumnUsage.KEY_COLUMN_USAGE, org.jooq.util.hsqldb.information_schema.tables.Parameters.PARAMETERS, org.jooq.util.hsqldb.information_schema.tables.ReferentialConstraints.REFERENTIAL_CONSTRAINTS, org.jooq.util.hsqldb.information_schema.tables.Routines.ROUTINES, org.jooq.util.hsqldb.information_schema.tables.Schemata.SCHEMATA, org.jooq.util.hsqldb.information_schema.tables.Sequences.SEQUENCES, org.jooq.util.hsqldb.information_schema.tables.Tables.TABLES, org.jooq.util.hsqldb.information_schema.tables.TableConstraints.TABLE_CONSTRAINTS); } }