org.jooq.meta.derby.sys.tables.Systables Maven / Gradle / Ivy
/*
* This file is generated by jOOQ.
*/
package org.jooq.meta.derby.sys.tables;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Name;
import org.jooq.Record;
import org.jooq.Schema;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.TableOptions;
import org.jooq.impl.DSL;
import org.jooq.impl.TableImpl;
import org.jooq.meta.derby.sys.Sys;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Systables extends TableImpl {
private static final long serialVersionUID = -18187726;
/**
* The reference instance of SYS.SYSTABLES
*/
public static final Systables SYSTABLES = new Systables();
/**
* The class holding records for this type
*/
@Override
public Class getRecordType() {
return Record.class;
}
/**
* The column SYS.SYSTABLES.TABLEID
.
*/
public static final TableField TABLEID = createField(DSL.name("TABLEID"), org.jooq.impl.SQLDataType.CHAR(36).nullable(false), SYSTABLES, "");
/**
* The column SYS.SYSTABLES.TABLENAME
.
*/
public static final TableField TABLENAME = createField(DSL.name("TABLENAME"), org.jooq.impl.SQLDataType.VARCHAR(128).nullable(false), SYSTABLES, "");
/**
* The column SYS.SYSTABLES.TABLETYPE
.
*/
public static final TableField TABLETYPE = createField(DSL.name("TABLETYPE"), org.jooq.impl.SQLDataType.CHAR(1).nullable(false), SYSTABLES, "");
/**
* The column SYS.SYSTABLES.SCHEMAID
.
*/
public static final TableField SCHEMAID = createField(DSL.name("SCHEMAID"), org.jooq.impl.SQLDataType.CHAR(36).nullable(false), SYSTABLES, "");
/**
* The column SYS.SYSTABLES.LOCKGRANULARITY
.
*/
public static final TableField LOCKGRANULARITY = createField(DSL.name("LOCKGRANULARITY"), org.jooq.impl.SQLDataType.CHAR(1).nullable(false), SYSTABLES, "");
/**
* No further instances allowed
*/
private Systables() {
this(DSL.name("SYSTABLES"), null);
}
private Systables(Name alias, Table aliased) {
this(alias, aliased, null);
}
private Systables(Name alias, Table aliased, Field>[] parameters) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
}
public Systables(Table child, ForeignKey key) {
super(child, key, SYSTABLES);
}
@Override
public Schema getSchema() {
return Sys.SYS;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy