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

org.jooq.meta.derby.sys.tables.Syskeys 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 Syskeys extends TableImpl {

    private static final long serialVersionUID = -166123046;

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

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

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

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

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

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

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

    public  Syskeys(Table child, ForeignKey key) {
        super(child, key, SYSKEYS);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy