/** * This class is generated by jOOQ */ package org.jooq.util.derby.sys.tables; /** * This class is generated by jOOQ. */ @javax.annotation.Generated(value = {"http://www.jooq.org", "3.0.0"}, comments = "This class is generated by jOOQ") @java.lang.SuppressWarnings("all") public class Systables extends org.jooq.impl.TableImpl<org.jooq.Record> { private static final long serialVersionUID = -675426733; /** * The singleton instance of <code>SYS.SYSTABLES</code> */ public static final org.jooq.util.derby.sys.tables.Systables SYSTABLES = new org.jooq.util.derby.sys.tables.Systables(); /** * The class holding records for this type */ @Override public java.lang.Class<org.jooq.Record> getRecordType() { return org.jooq.Record.class; } /** * The column <code>SYS.SYSTABLES.TABLEID</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLEID = createField("TABLEID", org.jooq.impl.SQLDataType.CHAR, SYSTABLES); /** * The column <code>SYS.SYSTABLES.TABLENAME</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLENAME = createField("TABLENAME", org.jooq.impl.SQLDataType.VARCHAR, SYSTABLES); /** * The column <code>SYS.SYSTABLES.TABLETYPE</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLETYPE = createField("TABLETYPE", org.jooq.impl.SQLDataType.CHAR, SYSTABLES); /** * The column <code>SYS.SYSTABLES.SCHEMAID</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SCHEMAID = createField("SCHEMAID", org.jooq.impl.SQLDataType.CHAR, SYSTABLES); /** * The column <code>SYS.SYSTABLES.LOCKGRANULARITY</code>. */ public static final org.jooq.TableField<org.jooq.Record, java.lang.String> LOCKGRANULARITY = createField("LOCKGRANULARITY", org.jooq.impl.SQLDataType.CHAR, SYSTABLES); /** * No further instances allowed */ private Systables() { super("SYSTABLES", org.jooq.util.derby.sys.Sys.SYS); } }