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

org.jooq.util.cubrid.dba.tables.DbIndexKey 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.4.0" },
                            comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class DbIndexKey extends org.jooq.impl.TableImpl {

	private static final long serialVersionUID = 1317315060;

	/**
	 * The singleton instance of db_index_key
	 */
	public static final org.jooq.util.cubrid.dba.tables.DbIndexKey DB_INDEX_KEY = new org.jooq.util.cubrid.dba.tables.DbIndexKey();

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

	/**
	 * The column db_index_key.index_name.
	 */
	public final org.jooq.TableField INDEX_NAME = createField("index_name", org.jooq.impl.SQLDataType.VARCHAR.length(255), this, "");

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

	/**
	 * The column db_index_key.key_attr_name.
	 */
	public final org.jooq.TableField KEY_ATTR_NAME = createField("key_attr_name", org.jooq.impl.SQLDataType.VARCHAR.length(255), this, "");

	/**
	 * The column db_index_key.key_order.
	 */
	public final org.jooq.TableField KEY_ORDER = createField("key_order", org.jooq.impl.SQLDataType.INTEGER, this, "");

	/**
	 * The column db_index_key.asc_desc.
	 */
	public final org.jooq.TableField ASC_DESC = createField("asc_desc", org.jooq.impl.SQLDataType.VARCHAR.length(4), this, "");

	/**
	 * The column db_index_key.key_prefix_length.
	 */
	public final org.jooq.TableField KEY_PREFIX_LENGTH = createField("key_prefix_length", org.jooq.impl.SQLDataType.INTEGER, this, "");

	/**
	 * The column db_index_key.func.
	 */
	public final org.jooq.TableField FUNC = createField("func", org.jooq.impl.SQLDataType.VARCHAR.length(255), this, "");

	/**
	 * Create a db_index_key table reference
	 */
	public DbIndexKey() {
		this("db_index_key", null);
	}

	/**
	 * Create an aliased db_index_key table reference
	 */
	public DbIndexKey(java.lang.String alias) {
		this(alias, org.jooq.util.cubrid.dba.tables.DbIndexKey.DB_INDEX_KEY);
	}

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

	private DbIndexKey(java.lang.String alias, org.jooq.Table aliased, org.jooq.Field[] parameters) {
		super(alias, org.jooq.util.cubrid.dba.DefaultSchema.DEFAULT_SCHEMA, aliased, parameters, "");
	}

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

	/**
	 * Rename this table
	 */
	public org.jooq.util.cubrid.dba.tables.DbIndexKey rename(java.lang.String name) {
		return new org.jooq.util.cubrid.dba.tables.DbIndexKey(name, null);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy