org.jooq.util.firebird.rdb.tables.Rdb$relations Maven / Gradle / Ivy
/**
* This class is generated by jOOQ
*/
package org.jooq.util.firebird.rdb.tables;
/**
* This class is generated by jOOQ.
*/
@javax.annotation.Generated(
value = {
"http://www.jooq.org",
"jOOQ version:3.5.0"
},
comments = "This class is generated by jOOQ"
)
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Rdb$relations extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = 1522914669;
/**
* The singleton instance of RDB$RELATIONS
*/
public static final org.jooq.util.firebird.rdb.tables.Rdb$relations RDB$RELATIONS = new org.jooq.util.firebird.rdb.tables.Rdb$relations();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The column RDB$RELATIONS.RDB$VIEW_BLR
.
*/
public final org.jooq.TableField RDB$VIEW_BLR = createField("RDB$VIEW_BLR", org.jooq.impl.SQLDataType.BLOB, this, "");
/**
* The column RDB$RELATIONS.RDB$VIEW_SOURCE
.
*/
public final org.jooq.TableField RDB$VIEW_SOURCE = createField("RDB$VIEW_SOURCE", org.jooq.impl.SQLDataType.CLOB, this, "");
/**
* The column RDB$RELATIONS.RDB$DESCRIPTION
.
*/
public final org.jooq.TableField RDB$DESCRIPTION = createField("RDB$DESCRIPTION", org.jooq.impl.SQLDataType.CLOB, this, "");
/**
* The column RDB$RELATIONS.RDB$RELATION_ID
.
*/
public final org.jooq.TableField RDB$RELATION_ID = createField("RDB$RELATION_ID", org.jooq.impl.SQLDataType.SMALLINT, this, "");
/**
* The column RDB$RELATIONS.RDB$SYSTEM_FLAG
.
*/
public final org.jooq.TableField RDB$SYSTEM_FLAG = createField("RDB$SYSTEM_FLAG", org.jooq.impl.SQLDataType.SMALLINT, this, "");
/**
* The column RDB$RELATIONS.RDB$DBKEY_LENGTH
.
*/
public final org.jooq.TableField RDB$DBKEY_LENGTH = createField("RDB$DBKEY_LENGTH", org.jooq.impl.SQLDataType.SMALLINT, this, "");
/**
* The column RDB$RELATIONS.RDB$FORMAT
.
*/
public final org.jooq.TableField RDB$FORMAT = createField("RDB$FORMAT", org.jooq.impl.SQLDataType.SMALLINT, this, "");
/**
* The column RDB$RELATIONS.RDB$FIELD_ID
.
*/
public final org.jooq.TableField RDB$FIELD_ID = createField("RDB$FIELD_ID", org.jooq.impl.SQLDataType.SMALLINT, this, "");
/**
* The column RDB$RELATIONS.RDB$RELATION_NAME
.
*/
public final org.jooq.TableField RDB$RELATION_NAME = createField("RDB$RELATION_NAME", org.jooq.impl.SQLDataType.CHAR, this, "");
/**
* The column RDB$RELATIONS.RDB$SECURITY_CLASS
.
*/
public final org.jooq.TableField RDB$SECURITY_CLASS = createField("RDB$SECURITY_CLASS", org.jooq.impl.SQLDataType.CHAR, this, "");
/**
* The column RDB$RELATIONS.RDB$EXTERNAL_FILE
.
*/
public final org.jooq.TableField RDB$EXTERNAL_FILE = createField("RDB$EXTERNAL_FILE", org.jooq.impl.SQLDataType.VARCHAR, this, "");
/**
* The column RDB$RELATIONS.RDB$RUNTIME
.
*/
public final org.jooq.TableField RDB$RUNTIME = createField("RDB$RUNTIME", org.jooq.impl.SQLDataType.BLOB, this, "");
/**
* The column RDB$RELATIONS.RDB$EXTERNAL_DESCRIPTION
.
*/
public final org.jooq.TableField RDB$EXTERNAL_DESCRIPTION = createField("RDB$EXTERNAL_DESCRIPTION", org.jooq.impl.SQLDataType.BLOB, this, "");
/**
* The column RDB$RELATIONS.RDB$OWNER_NAME
.
*/
public final org.jooq.TableField RDB$OWNER_NAME = createField("RDB$OWNER_NAME", org.jooq.impl.SQLDataType.CHAR, this, "");
/**
* The column RDB$RELATIONS.RDB$DEFAULT_CLASS
.
*/
public final org.jooq.TableField RDB$DEFAULT_CLASS = createField("RDB$DEFAULT_CLASS", org.jooq.impl.SQLDataType.CHAR, this, "");
/**
* The column RDB$RELATIONS.RDB$FLAGS
.
*/
public final org.jooq.TableField RDB$FLAGS = createField("RDB$FLAGS", org.jooq.impl.SQLDataType.SMALLINT, this, "");
/**
* The column RDB$RELATIONS.RDB$RELATION_TYPE
.
*/
public final org.jooq.TableField RDB$RELATION_TYPE = createField("RDB$RELATION_TYPE", org.jooq.impl.SQLDataType.SMALLINT, this, "");
/**
* Create a RDB$RELATIONS
table reference
*/
public Rdb$relations() {
this("RDB$RELATIONS", null);
}
/**
* Create an aliased RDB$RELATIONS
table reference
*/
public Rdb$relations(java.lang.String alias) {
this(alias, org.jooq.util.firebird.rdb.tables.Rdb$relations.RDB$RELATIONS);
}
private Rdb$relations(java.lang.String alias, org.jooq.Table aliased) {
this(alias, aliased, null);
}
private Rdb$relations(java.lang.String alias, org.jooq.Table aliased, org.jooq.Field>[] parameters) {
super(alias, org.jooq.util.firebird.rdb.DefaultSchema.DEFAULT_SCHEMA, aliased, parameters, "");
}
/**
* {@inheritDoc}
*/
@Override
public org.jooq.util.firebird.rdb.tables.Rdb$relations as(java.lang.String alias) {
return new org.jooq.util.firebird.rdb.tables.Rdb$relations(alias, this);
}
/**
* Rename this table
*/
public org.jooq.util.firebird.rdb.tables.Rdb$relations rename(java.lang.String name) {
return new org.jooq.util.firebird.rdb.tables.Rdb$relations(name, null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy