All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.meta.derby.sys.tables.Syscolumns Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
/*
 * 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 Syscolumns extends TableImpl {

    private static final long serialVersionUID = 1350441861;

    /**
     * The reference instance of SYS.SYSCOLUMNS
     */
    public static final Syscolumns SYSCOLUMNS = new Syscolumns();

    /**
     * The class holding records for this type
     */
    @Override
    public Class getRecordType() {
        return Record.class;
    }

    /**
     * The column SYS.SYSCOLUMNS.REFERENCEID.
     */
    public static final TableField REFERENCEID = createField(DSL.name("REFERENCEID"), org.jooq.impl.SQLDataType.CHAR(36).nullable(false), SYSCOLUMNS, "");

    /**
     * The column SYS.SYSCOLUMNS.COLUMNNAME.
     */
    public static final TableField COLUMNNAME = createField(DSL.name("COLUMNNAME"), org.jooq.impl.SQLDataType.VARCHAR(128).nullable(false), SYSCOLUMNS, "");

    /**
     * The column SYS.SYSCOLUMNS.COLUMNNUMBER.
     */
    public static final TableField COLUMNNUMBER = createField(DSL.name("COLUMNNUMBER"), org.jooq.impl.SQLDataType.INTEGER.nullable(false), SYSCOLUMNS, "");

    /**
     * The column SYS.SYSCOLUMNS.COLUMNDATATYPE.
     */
    public static final TableField COLUMNDATATYPE = createField(DSL.name("COLUMNDATATYPE"), org.jooq.impl.SQLDataType.CLOB.nullable(false), SYSCOLUMNS, "");

    /**
     * The column SYS.SYSCOLUMNS.COLUMNDEFAULT.
     */
    public static final TableField COLUMNDEFAULT = createField(DSL.name("COLUMNDEFAULT"), org.jooq.impl.SQLDataType.CLOB, SYSCOLUMNS, "");

    /**
     * The column SYS.SYSCOLUMNS.COLUMNDEFAULTID.
     */
    public static final TableField COLUMNDEFAULTID = createField(DSL.name("COLUMNDEFAULTID"), org.jooq.impl.SQLDataType.CHAR(36), SYSCOLUMNS, "");

    /**
     * The column SYS.SYSCOLUMNS.AUTOINCREMENTVALUE.
     */
    public static final TableField AUTOINCREMENTVALUE = createField(DSL.name("AUTOINCREMENTVALUE"), org.jooq.impl.SQLDataType.BIGINT, SYSCOLUMNS, "");

    /**
     * The column SYS.SYSCOLUMNS.AUTOINCREMENTSTART.
     */
    public static final TableField AUTOINCREMENTSTART = createField(DSL.name("AUTOINCREMENTSTART"), org.jooq.impl.SQLDataType.BIGINT, SYSCOLUMNS, "");

    /**
     * The column SYS.SYSCOLUMNS.AUTOINCREMENTINC.
     */
    public static final TableField AUTOINCREMENTINC = createField(DSL.name("AUTOINCREMENTINC"), org.jooq.impl.SQLDataType.BIGINT, SYSCOLUMNS, "");

    /**
     * The column SYS.SYSCOLUMNS.AUTOINCREMENTCYCLE.
     */
    public static final TableField AUTOINCREMENTCYCLE = createField(DSL.name("AUTOINCREMENTCYCLE"), org.jooq.impl.SQLDataType.BOOLEAN, SYSCOLUMNS, "");

    /**
     * No further instances allowed
     */
    private Syscolumns() {
        this(DSL.name("SYSCOLUMNS"), null);
    }

    private Syscolumns(Name alias, Table aliased) {
        this(alias, aliased, null);
    }

    private Syscolumns(Name alias, Table aliased, Field[] parameters) {
        super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
    }

    public  Syscolumns(Table child, ForeignKey key) {
        super(child, key, SYSCOLUMNS);
    }

    @Override
    public Schema getSchema() {
        return Sys.SYS;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy