org.jooq.util.sybase.sys.tables.Sysfkey Maven / Gradle / Ivy
/**
* This class is generated by jOOQ
*/
package org.jooq.util.sybase.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 Sysfkey extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = 1889954379;
/**
* The singleton instance of SYS.SYSFKEY
*/
public static final org.jooq.util.sybase.sys.tables.Sysfkey SYSFKEY = new org.jooq.util.sybase.sys.tables.Sysfkey();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The column SYS.SYSFKEY.foreign_table_id
.
*/
public final org.jooq.TableField FOREIGN_TABLE_ID = createField("foreign_table_id", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The column SYS.SYSFKEY.foreign_index_id
.
*/
public final org.jooq.TableField FOREIGN_INDEX_ID = createField("foreign_index_id", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The column SYS.SYSFKEY.primary_table_id
.
*/
public final org.jooq.TableField PRIMARY_TABLE_ID = createField("primary_table_id", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The column SYS.SYSFKEY.primary_index_id
.
*/
public final org.jooq.TableField PRIMARY_INDEX_ID = createField("primary_index_id", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The column SYS.SYSFKEY.match_type
.
*/
public final org.jooq.TableField MATCH_TYPE = createField("match_type", org.jooq.impl.SQLDataType.TINYINT, this);
/**
* The column SYS.SYSFKEY.check_on_commit
.
*/
public final org.jooq.TableField CHECK_ON_COMMIT = createField("check_on_commit", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The column SYS.SYSFKEY.nulls
.
*/
public final org.jooq.TableField NULLS = createField("nulls", org.jooq.impl.SQLDataType.CHAR, this);
/**
* Create a SYS.SYSFKEY
table reference
*/
public Sysfkey() {
super("SYSFKEY", org.jooq.util.sybase.sys.Sys.SYS);
}
/**
* Create an aliased SYS.SYSFKEY
table reference
*/
public Sysfkey(java.lang.String alias) {
super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Sysfkey.SYSFKEY);
}
/**
* {@inheritDoc}
*/
@Override
public org.jooq.util.sybase.sys.tables.Sysfkey as(java.lang.String alias) {
return new org.jooq.util.sybase.sys.tables.Sysfkey(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy