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

	private static final long serialVersionUID = 3185029;

	/**
	 * The singleton instance of DBA.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 table column DBA.db_index_key.index_name
	 */
	public final org.jooq.TableField INDEX_NAME = createField("index_name", org.jooq.impl.SQLDataType.VARCHAR, this);

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

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

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

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

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

	public DbIndexKey() {
		super("db_index_key", org.jooq.util.cubrid.dba.Dba.DBA);
	}

	public DbIndexKey(java.lang.String alias) {
		super(alias, org.jooq.util.cubrid.dba.Dba.DBA, org.jooq.util.cubrid.dba.tables.DbIndexKey.DB_INDEX_KEY);
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy