/** * This class is generated by jOOQ */ package org.jooq.util.h2.information_schema.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.h2.information_schema.InformationSchema; /** * This class is generated by jOOQ. */ @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 extends TableImpl<Record> { private static final long serialVersionUID = -1494601101; /** * The reference instance of <code>INFORMATION_SCHEMA.TABLES</code> */ public static final Tables TABLES = new Tables(); /** * The class holding records for this type */ @Override public Class<Record> getRecordType() { return Record.class; } /** * The column <code>INFORMATION_SCHEMA.TABLES.TABLE_CATALOG</code>. */ public static final TableField<Record, String> TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), TABLES, ""); /** * The column <code>INFORMATION_SCHEMA.TABLES.TABLE_SCHEMA</code>. */ public static final TableField<Record, String> TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), TABLES, ""); /** * The column <code>INFORMATION_SCHEMA.TABLES.TABLE_NAME</code>. */ public static final TableField<Record, String> TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), TABLES, ""); /** * The column <code>INFORMATION_SCHEMA.TABLES.TABLE_TYPE</code>. */ public static final TableField<Record, String> TABLE_TYPE = createField("TABLE_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), TABLES, ""); /** * The column <code>INFORMATION_SCHEMA.TABLES.STORAGE_TYPE</code>. */ public static final TableField<Record, String> STORAGE_TYPE = createField("STORAGE_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), TABLES, ""); /** * The column <code>INFORMATION_SCHEMA.TABLES.SQL</code>. */ public static final TableField<Record, String> SQL = createField("SQL", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), TABLES, ""); /** * The column <code>INFORMATION_SCHEMA.TABLES.REMARKS</code>. */ public static final TableField<Record, String> REMARKS = createField("REMARKS", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), TABLES, ""); /** * The column <code>INFORMATION_SCHEMA.TABLES.LAST_MODIFICATION</code>. */ public static final TableField<Record, Long> LAST_MODIFICATION = createField("LAST_MODIFICATION", org.jooq.impl.SQLDataType.BIGINT, TABLES, ""); /** * The column <code>INFORMATION_SCHEMA.TABLES.ID</code>. */ public static final TableField<Record, Integer> ID = createField("ID", org.jooq.impl.SQLDataType.INTEGER, TABLES, ""); /** * The column <code>INFORMATION_SCHEMA.TABLES.TYPE_NAME</code>. */ public static final TableField<Record, String> TYPE_NAME = createField("TYPE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), TABLES, ""); /** * The column <code>INFORMATION_SCHEMA.TABLES.TABLE_CLASS</code>. */ public static final TableField<Record, String> TABLE_CLASS = createField("TABLE_CLASS", org.jooq.impl.SQLDataType.VARCHAR.length(2147483647), TABLES, ""); /** * The column <code>INFORMATION_SCHEMA.TABLES.ROW_COUNT_ESTIMATE</code>. */ public static final TableField<Record, Long> ROW_COUNT_ESTIMATE = createField("ROW_COUNT_ESTIMATE", org.jooq.impl.SQLDataType.BIGINT, TABLES, ""); /** * No further instances allowed */ private Tables() { this("TABLES", null); } private Tables(String alias, Table<Record> aliased) { this(alias, aliased, null); } private Tables(String alias, Table<Record> aliased, Field<?>[] parameters) { super(alias, InformationSchema.INFORMATION_SCHEMA, aliased, parameters, ""); } }