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

org.jooq.util.sybase.sys.tables.Sysidxcol 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 Sysidxcol extends org.jooq.impl.TableImpl {

	private static final long serialVersionUID = 1136403536;

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

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

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

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

	/**
	 * The column SYS.SYSIDXCOL.sequence. 
	 */
	public final org.jooq.TableField SEQUENCE = createField("sequence", org.jooq.impl.SQLDataType.SMALLINT, this);

	/**
	 * The column SYS.SYSIDXCOL.column_id. 
	 */
	public final org.jooq.TableField COLUMN_ID = createField("column_id", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column SYS.SYSIDXCOL.order. 
	 */
	public final org.jooq.TableField ORDER = createField("order", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * The column SYS.SYSIDXCOL.primary_column_id. 
	 */
	public final org.jooq.TableField PRIMARY_COLUMN_ID = createField("primary_column_id", org.jooq.impl.SQLDataType.INTEGER, this);

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy