org.jooq.meta.derby.sys.tables.Sysviews 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 Sysviews extends TableImpl {
private static final long serialVersionUID = 1025332522;
/**
* The reference instance of SYS.SYSVIEWS
*/
public static final Sysviews SYSVIEWS = new Sysviews();
/**
* The class holding records for this type
*/
@Override
public Class getRecordType() {
return Record.class;
}
/**
* The column SYS.SYSVIEWS.TABLEID
.
*/
public static final TableField TABLEID = createField(DSL.name("TABLEID"), org.jooq.impl.SQLDataType.CHAR(36).nullable(false), SYSVIEWS, "");
/**
* The column SYS.SYSVIEWS.VIEWDEFINITION
.
*/
public static final TableField VIEWDEFINITION = createField(DSL.name("VIEWDEFINITION"), org.jooq.impl.SQLDataType.LONGVARCHAR.nullable(false), SYSVIEWS, "");
/**
* The column SYS.SYSVIEWS.CHECKOPTION
.
*/
public static final TableField CHECKOPTION = createField(DSL.name("CHECKOPTION"), org.jooq.impl.SQLDataType.CHAR(1).nullable(false), SYSVIEWS, "");
/**
* The column SYS.SYSVIEWS.COMPILATIONSCHEMAID
.
*/
public static final TableField COMPILATIONSCHEMAID = createField(DSL.name("COMPILATIONSCHEMAID"), org.jooq.impl.SQLDataType.CHAR(36), SYSVIEWS, "");
/**
* No further instances allowed
*/
private Sysviews() {
this(DSL.name("SYSVIEWS"), null);
}
private Sysviews(Name alias, Table aliased) {
this(alias, aliased, null);
}
private Sysviews(Name alias, Table aliased, Field>[] parameters) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
}
public Sysviews(Table child, ForeignKey key) {
super(child, key, SYSVIEWS);
}
@Override
public Schema getSchema() {
return Sys.SYS;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy