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

org.jooq.util.cubrid.dba.tables.DbAttribute Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
/**
 * This class is generated by jOOQ
 */
package org.jooq.util.cubrid.dba.tables;

/**
 * This class is generated by jOOQ.
 */
@javax.annotation.Generated(value    = {"http://www.jooq.org", "3.0.0"},
                            comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings("all")
public class DbAttribute extends org.jooq.impl.TableImpl {

	private static final long serialVersionUID = 465094613;

	/**
	 * The singleton instance of db_attribute
	 */
	public static final org.jooq.util.cubrid.dba.tables.DbAttribute DB_ATTRIBUTE = new org.jooq.util.cubrid.dba.tables.DbAttribute();

	/**
	 * The class holding records for this type
	 */
	@Override
	public java.lang.Class getRecordType() {
		return org.jooq.Record.class;
	}

	/**
	 * The column db_attribute.attr_name. 
	 */
	public final org.jooq.TableField ATTR_NAME = createField("attr_name", org.jooq.impl.SQLDataType.VARCHAR.length(255), this);

	/**
	 * The column db_attribute.class_name. 
	 */
	public final org.jooq.TableField CLASS_NAME = createField("class_name", org.jooq.impl.SQLDataType.VARCHAR.length(255), this);

	/**
	 * The column db_attribute.attr_type. 
	 */
	public final org.jooq.TableField ATTR_TYPE = createField("attr_type", org.jooq.impl.SQLDataType.VARCHAR.length(8), this);

	/**
	 * The column db_attribute.def_order. 
	 */
	public final org.jooq.TableField DEF_ORDER = createField("def_order", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column db_attribute.from_class_name. 
	 */
	public final org.jooq.TableField FROM_CLASS_NAME = createField("from_class_name", org.jooq.impl.SQLDataType.VARCHAR.length(255), this);

	/**
	 * The column db_attribute.from_attr_name. 
	 */
	public final org.jooq.TableField FROM_ATTR_NAME = createField("from_attr_name", org.jooq.impl.SQLDataType.VARCHAR.length(255), this);

	/**
	 * The column db_attribute.data_type. 
	 */
	public final org.jooq.TableField DATA_TYPE = createField("data_type", org.jooq.impl.SQLDataType.VARCHAR.length(9), this);

	/**
	 * The column db_attribute.prec. 
	 */
	public final org.jooq.TableField PREC = createField("prec", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column db_attribute.scale. 
	 */
	public final org.jooq.TableField SCALE = createField("scale", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column db_attribute.code_set. 
	 */
	public final org.jooq.TableField CODE_SET = createField("code_set", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column db_attribute.domain_class_name. 
	 */
	public final org.jooq.TableField DOMAIN_CLASS_NAME = createField("domain_class_name", org.jooq.impl.SQLDataType.VARCHAR.length(255), this);

	/**
	 * The column db_attribute.default_value. 
	 */
	public final org.jooq.TableField DEFAULT_VALUE = createField("default_value", org.jooq.impl.SQLDataType.VARCHAR.length(255), this);

	/**
	 * The column db_attribute.is_nullable. 
	 */
	public final org.jooq.TableField IS_NULLABLE = createField("is_nullable", org.jooq.impl.SQLDataType.VARCHAR.length(3), this);

	/**
	 * Create a db_attribute table reference
	 */
	public DbAttribute() {
		super("db_attribute", org.jooq.util.cubrid.dba.DefaultSchema.DEFAULT_SCHEMA);
	}

	/**
	 * Create an aliased db_attribute table reference
	 */
	public DbAttribute(java.lang.String alias) {
		super(alias, org.jooq.util.cubrid.dba.DefaultSchema.DEFAULT_SCHEMA, org.jooq.util.cubrid.dba.tables.DbAttribute.DB_ATTRIBUTE);
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public org.jooq.util.cubrid.dba.tables.DbAttribute as(java.lang.String alias) {
		return new org.jooq.util.cubrid.dba.tables.DbAttribute(alias);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy