All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.util.firebird.rdb.tables.Rdb$relationConstraints Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
/**
 * 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", "3.4.0" },
                            comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Rdb$relationConstraints extends org.jooq.impl.TableImpl {

	private static final long serialVersionUID = -152536492;

	/**
	 * 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 column RDB$RELATION_CONSTRAINTS.RDB$CONSTRAINT_NAME.
	 */
	public final org.jooq.TableField RDB$CONSTRAINT_NAME = createField("RDB$CONSTRAINT_NAME", org.jooq.impl.SQLDataType.CHAR.length(31), this, "");

	/**
	 * The column RDB$RELATION_CONSTRAINTS.RDB$CONSTRAINT_TYPE.
	 */
	public final org.jooq.TableField RDB$CONSTRAINT_TYPE = createField("RDB$CONSTRAINT_TYPE", org.jooq.impl.SQLDataType.CHAR.length(11), this, "");

	/**
	 * The column RDB$RELATION_CONSTRAINTS.RDB$RELATION_NAME.
	 */
	public final org.jooq.TableField RDB$RELATION_NAME = createField("RDB$RELATION_NAME", org.jooq.impl.SQLDataType.CHAR.length(31), this, "");

	/**
	 * The column RDB$RELATION_CONSTRAINTS.RDB$DEFERRABLE.
	 */
	public final org.jooq.TableField RDB$DEFERRABLE = createField("RDB$DEFERRABLE", org.jooq.impl.SQLDataType.CHAR.length(3), this, "");

	/**
	 * The column RDB$RELATION_CONSTRAINTS.RDB$INITIALLY_DEFERRED.
	 */
	public final org.jooq.TableField RDB$INITIALLY_DEFERRED = createField("RDB$INITIALLY_DEFERRED", org.jooq.impl.SQLDataType.CHAR.length(3), this, "");

	/**
	 * The column RDB$RELATION_CONSTRAINTS.RDB$INDEX_NAME.
	 */
	public final org.jooq.TableField RDB$INDEX_NAME = createField("RDB$INDEX_NAME", org.jooq.impl.SQLDataType.CHAR.length(31), this, "");

	/**
	 * Create a RDB$RELATION_CONSTRAINTS table reference
	 */
	public Rdb$relationConstraints() {
		this("RDB$RELATION_CONSTRAINTS", null);
	}

	/**
	 * Create an aliased RDB$RELATION_CONSTRAINTS table reference
	 */
	public Rdb$relationConstraints(java.lang.String alias) {
		this(alias, org.jooq.util.firebird.rdb.tables.Rdb$relationConstraints.RDB$RELATION_CONSTRAINTS);
	}

	private Rdb$relationConstraints(java.lang.String alias, org.jooq.Table aliased) {
		this(alias, aliased, null);
	}

	private Rdb$relationConstraints(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$relationConstraints as(java.lang.String alias) {
		return new org.jooq.util.firebird.rdb.tables.Rdb$relationConstraints(alias, this);
	}

	/**
	 * Rename this table
	 */
	public org.jooq.util.firebird.rdb.tables.Rdb$relationConstraints rename(java.lang.String name) {
		return new org.jooq.util.firebird.rdb.tables.Rdb$relationConstraints(name, null);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy