org.jooq.util.firebird.rdb.tables.Rdb$relationConstraints 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", "2.6.0"},
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings("all")
public class Rdb$relationConstraints extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = -985103700;
/**
* The singleton instance of RDB$RELATION_CONSTRAINTS
*/
public static final org.jooq.util.firebird.rdb.tables.Rdb$relationConstraints RDB$RELATION_CONSTRAINTS = new org.jooq.util.firebird.rdb.tables.Rdb$relationConstraints();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The table column RDB$RELATION_CONSTRAINTS.RDB$CONSTRAINT_NAME
*/
public final org.jooq.TableField RDB$CONSTRAINT_NAME = createField("RDB$CONSTRAINT_NAME", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The table column RDB$RELATION_CONSTRAINTS.RDB$CONSTRAINT_TYPE
*/
public final org.jooq.TableField RDB$CONSTRAINT_TYPE = createField("RDB$CONSTRAINT_TYPE", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The table column RDB$RELATION_CONSTRAINTS.RDB$RELATION_NAME
*/
public final org.jooq.TableField RDB$RELATION_NAME = createField("RDB$RELATION_NAME", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The table column RDB$RELATION_CONSTRAINTS.RDB$DEFERRABLE
*/
public final org.jooq.TableField RDB$DEFERRABLE = createField("RDB$DEFERRABLE", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The table column RDB$RELATION_CONSTRAINTS.RDB$INITIALLY_DEFERRED
*/
public final org.jooq.TableField RDB$INITIALLY_DEFERRED = createField("RDB$INITIALLY_DEFERRED", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The table column RDB$RELATION_CONSTRAINTS.RDB$INDEX_NAME
*/
public final org.jooq.TableField RDB$INDEX_NAME = createField("RDB$INDEX_NAME", org.jooq.impl.SQLDataType.CHAR, this);
public Rdb$relationConstraints() {
super("RDB$RELATION_CONSTRAINTS");
}
public Rdb$relationConstraints(java.lang.String alias) {
super(alias, null, org.jooq.util.firebird.rdb.tables.Rdb$relationConstraints.RDB$RELATION_CONSTRAINTS);
}
@Override
public org.jooq.util.firebird.rdb.tables.Rdb$relationConstraints as(java.lang.String alias) {
return new org.jooq.util.firebird.rdb.tables.Rdb$relationConstraints(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy