org.jooq.meta.firebird.rdb.tables.Rdb$relationConstraints Maven / Gradle / Ivy
/*
* This file is generated by jOOQ.
*/
package org.jooq.meta.firebird.rdb.tables;
import java.util.Arrays;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Name;
import org.jooq.Record;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.TableOptions;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.SQLDataType;
import org.jooq.impl.TableImpl;
import org.jooq.meta.firebird.rdb.Keys;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Rdb$relationConstraints extends TableImpl {
private static final long serialVersionUID = 1L;
/**
* The reference instance of RDB$RELATION_CONSTRAINTS
*/
public static final Rdb$relationConstraints RDB$RELATION_CONSTRAINTS = new Rdb$relationConstraints();
/**
* The class holding records for this type
*/
@Override
public Class getRecordType() {
return Record.class;
}
/**
* The column RDB$RELATION_CONSTRAINTS.RDB$CONSTRAINT_NAME
.
*/
public final TableField RDB$CONSTRAINT_NAME = createField(DSL.name("RDB$CONSTRAINT_NAME"), SQLDataType.CHAR(63), this, "");
/**
* The column RDB$RELATION_CONSTRAINTS.RDB$CONSTRAINT_TYPE
.
*/
public final TableField RDB$CONSTRAINT_TYPE = createField(DSL.name("RDB$CONSTRAINT_TYPE"), SQLDataType.CHAR, this, "");
/**
* The column RDB$RELATION_CONSTRAINTS.RDB$RELATION_NAME
.
*/
public final TableField RDB$RELATION_NAME = createField(DSL.name("RDB$RELATION_NAME"), SQLDataType.CHAR(63), this, "");
/**
* The column RDB$RELATION_CONSTRAINTS.RDB$DEFERRABLE
.
*/
public final TableField RDB$DEFERRABLE = createField(DSL.name("RDB$DEFERRABLE"), SQLDataType.CHAR, this, "");
/**
* The column RDB$RELATION_CONSTRAINTS.RDB$INITIALLY_DEFERRED
.
*/
public final TableField RDB$INITIALLY_DEFERRED = createField(DSL.name("RDB$INITIALLY_DEFERRED"), SQLDataType.CHAR, this, "");
/**
* The column RDB$RELATION_CONSTRAINTS.RDB$INDEX_NAME
.
*/
public final TableField RDB$INDEX_NAME = createField(DSL.name("RDB$INDEX_NAME"), SQLDataType.CHAR(63), this, "");
private Rdb$relationConstraints(Name alias, Table aliased) {
this(alias, aliased, (Field>[]) null, null);
}
private Rdb$relationConstraints(Name alias, Table aliased, Field>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased RDB$RELATION_CONSTRAINTS
table reference
*/
public Rdb$relationConstraints(String alias) {
this(DSL.name(alias), RDB$RELATION_CONSTRAINTS);
}
/**
* Create an aliased RDB$RELATION_CONSTRAINTS
table reference
*/
public Rdb$relationConstraints(Name alias) {
this(alias, RDB$RELATION_CONSTRAINTS);
}
/**
* Create a RDB$RELATION_CONSTRAINTS
table reference
*/
public Rdb$relationConstraints() {
this(DSL.name("RDB$RELATION_CONSTRAINTS"), null);
}
@Override
public List> getUniqueKeys() {
return Arrays.asList(Keys.RDB$INDEX_12);
}
@Override
public Rdb$relationConstraints as(String alias) {
return new Rdb$relationConstraints(DSL.name(alias), this);
}
@Override
public Rdb$relationConstraints as(Name alias) {
return new Rdb$relationConstraints(alias, this);
}
@Override
public Rdb$relationConstraints as(Table> alias) {
return new Rdb$relationConstraints(alias.getQualifiedName(), this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy