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

org.jooq.util.sybase.sys.tables.Sysidx Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
/**
 * This class is generated by jOOQ
 */
package org.jooq.util.sybase.sys.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 Sysidx extends org.jooq.impl.TableImpl {

	private static final long serialVersionUID = 1274446258;

	/**
	 * The singleton instance of SYS.SYSIDX
	 */
	public static final org.jooq.util.sybase.sys.tables.Sysidx SYSIDX = new org.jooq.util.sybase.sys.tables.Sysidx();

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

	/**
	 * The column SYS.SYSIDX.table_id. 
	 */
	public final org.jooq.TableField TABLE_ID = createField("table_id", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column SYS.SYSIDX.index_id. 
	 */
	public final org.jooq.TableField INDEX_ID = createField("index_id", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column SYS.SYSIDX.object_id. 
	 */
	public final org.jooq.TableField OBJECT_ID = createField("object_id", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * The column SYS.SYSIDX.phys_index_id. 
	 */
	public final org.jooq.TableField PHYS_INDEX_ID = createField("phys_index_id", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column SYS.SYSIDX.dbspace_id. 
	 */
	public final org.jooq.TableField DBSPACE_ID = createField("dbspace_id", org.jooq.impl.SQLDataType.SMALLINT, this);

	/**
	 * The column SYS.SYSIDX.index_category. 
	 */
	public final org.jooq.TableField INDEX_CATEGORY = createField("index_category", org.jooq.impl.SQLDataType.TINYINT, this);

	/**
	 * The column SYS.SYSIDX.unique. 
	 */
	public final org.jooq.TableField UNIQUE = createField("unique", org.jooq.impl.SQLDataType.TINYINT, this);

	/**
	 * The column SYS.SYSIDX.index_name. 
	 */
	public final org.jooq.TableField INDEX_NAME = createField("index_name", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * The column SYS.SYSIDX.not_enforced. 
	 */
	public final org.jooq.TableField NOT_ENFORCED = createField("not_enforced", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * The column SYS.SYSIDX.file_id. 
	 */
	public final org.jooq.TableField FILE_ID = createField("file_id", org.jooq.impl.SQLDataType.SMALLINT, this);

	/**
	 * Create a SYS.SYSIDX table reference
	 */
	public Sysidx() {
		super("SYSIDX", org.jooq.util.sybase.sys.Sys.SYS);
	}

	/**
	 * Create an aliased SYS.SYSIDX table reference
	 */
	public Sysidx(java.lang.String alias) {
		super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Sysidx.SYSIDX);
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public org.jooq.util.sybase.sys.tables.Sysidx as(java.lang.String alias) {
		return new org.jooq.util.sybase.sys.tables.Sysidx(alias);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy