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

org.jooq.util.cubrid.dba.tables.DbIndex 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 DbIndex extends org.jooq.impl.TableImpl {

	private static final long serialVersionUID = 1957888652;

	/**
	 * The singleton instance of db_index
	 */
	public static final org.jooq.util.cubrid.dba.tables.DbIndex DB_INDEX = new org.jooq.util.cubrid.dba.tables.DbIndex();

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

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

	/**
	 * The column db_index.is_unique. 
	 */
	public final org.jooq.TableField IS_UNIQUE = createField("is_unique", org.jooq.impl.SQLDataType.VARCHAR.length(3), this);

	/**
	 * The column db_index.is_reverse. 
	 */
	public final org.jooq.TableField IS_REVERSE = createField("is_reverse", org.jooq.impl.SQLDataType.VARCHAR.length(3), this);

	/**
	 * The column db_index.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_count. 
	 */
	public final org.jooq.TableField KEY_COUNT = createField("key_count", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column db_index.is_primary_key. 
	 */
	public final org.jooq.TableField IS_PRIMARY_KEY = createField("is_primary_key", org.jooq.impl.SQLDataType.VARCHAR.length(3), this);

	/**
	 * The column db_index.is_foreign_key. 
	 */
	public final org.jooq.TableField IS_FOREIGN_KEY = createField("is_foreign_key", org.jooq.impl.SQLDataType.VARCHAR.length(3), this);

	/**
	 * The column db_index.filter_expression. 
	 */
	public final org.jooq.TableField FILTER_EXPRESSION = createField("filter_expression", org.jooq.impl.SQLDataType.VARCHAR.length(255), this);

	/**
	 * The column db_index.have_function. 
	 */
	public final org.jooq.TableField HAVE_FUNCTION = createField("have_function", org.jooq.impl.SQLDataType.VARCHAR.length(3), this);

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy