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.Field;
import org.jooq.Name;
import org.jooq.Record;
import org.jooq.Schema;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.Internal;
import org.jooq.impl.TableImpl;
import org.jooq.meta.firebird.rdb.DefaultSchema;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Rdb$relationConstraints extends TableImpl {
private static final long serialVersionUID = 573885063;
/**
* 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"), org.jooq.impl.SQLDataType.CHAR(31), this, "");
/**
* The column RDB$RELATION_CONSTRAINTS.RDB$CONSTRAINT_TYPE
.
*/
public final TableField RDB$CONSTRAINT_TYPE = createField(DSL.name("RDB$CONSTRAINT_TYPE"), org.jooq.impl.SQLDataType.CHAR, this, "");
/**
* The column RDB$RELATION_CONSTRAINTS.RDB$RELATION_NAME
.
*/
public final TableField RDB$RELATION_NAME = createField(DSL.name("RDB$RELATION_NAME"), org.jooq.impl.SQLDataType.CHAR(31), this, "");
/**
* The column RDB$RELATION_CONSTRAINTS.RDB$DEFERRABLE
.
*/
public final TableField RDB$DEFERRABLE = createField(DSL.name("RDB$DEFERRABLE"), org.jooq.impl.SQLDataType.CHAR, this, "");
/**
* The column RDB$RELATION_CONSTRAINTS.RDB$INITIALLY_DEFERRED
.
*/
public final TableField RDB$INITIALLY_DEFERRED = createField(DSL.name("RDB$INITIALLY_DEFERRED"), org.jooq.impl.SQLDataType.CHAR, this, "");
/**
* The column RDB$RELATION_CONSTRAINTS.RDB$INDEX_NAME
.
*/
public final TableField RDB$INDEX_NAME = createField(DSL.name("RDB$INDEX_NAME"), org.jooq.impl.SQLDataType.CHAR(31), this, "");
/**
* Create a RDB$RELATION_CONSTRAINTS
table reference
*/
public Rdb$relationConstraints() {
this(DSL.name("RDB$RELATION_CONSTRAINTS"), null);
}
/**
* 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);
}
private Rdb$relationConstraints(Name alias, Table aliased) {
this(alias, aliased, null);
}
private Rdb$relationConstraints(Name alias, Table aliased, Field>[] parameters) {
super(alias, null, aliased, parameters, DSL.comment(""));
}
@Override
public Schema getSchema() {
return DefaultSchema.DEFAULT_SCHEMA;
}
@Override
public List> getKeys() {
return Arrays.>asList(
Internal.createUniqueKey(org.jooq.meta.firebird.rdb.tables.Rdb$relationConstraints.RDB$RELATION_CONSTRAINTS, "RDB$INDEX_12", org.jooq.meta.firebird.rdb.tables.Rdb$relationConstraints.RDB$RELATION_CONSTRAINTS.RDB$CONSTRAINT_NAME)
);
}
@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);
}
/**
* Rename this table
*/
@Override
public Rdb$relationConstraints rename(String name) {
return new Rdb$relationConstraints(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public Rdb$relationConstraints rename(Name name) {
return new Rdb$relationConstraints(name, null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy