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

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

	private static final long serialVersionUID = -1232086562;

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

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

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

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

	/**
	 * The table column SYS.SYSTABCOL.domain_id
	 */
	public final org.jooq.TableField DOMAIN_ID = createField("domain_id", org.jooq.impl.SQLDataType.SMALLINT, this);

	/**
	 * The table column SYS.SYSTABCOL.nulls
	 */
	public final org.jooq.TableField NULLS = createField("nulls", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * The table column SYS.SYSTABCOL.width
	 */
	public final org.jooq.TableField WIDTH = createField("width", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * The table column SYS.SYSTABCOL.scale
	 */
	public final org.jooq.TableField SCALE = createField("scale", org.jooq.impl.SQLDataType.SMALLINT, this);

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

	/**
	 * The table column SYS.SYSTABCOL.max_identity
	 */
	public final org.jooq.TableField MAX_IDENTITY = createField("max_identity", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * The table column SYS.SYSTABCOL.column_name
	 */
	public final org.jooq.TableField COLUMN_NAME = createField("column_name", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * The table column SYS.SYSTABCOL.default
	 */
	public final org.jooq.TableField DEFAULT = createField("default", org.jooq.impl.SQLDataType.LONGVARCHAR, this);

	/**
	 * The table column SYS.SYSTABCOL.user_type
	 */
	public final org.jooq.TableField USER_TYPE = createField("user_type", org.jooq.impl.SQLDataType.SMALLINT, this);

	/**
	 * The table column SYS.SYSTABCOL.column_type
	 */
	public final org.jooq.TableField COLUMN_TYPE = createField("column_type", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * The table column SYS.SYSTABCOL.compressed
	 */
	public final org.jooq.TableField COMPRESSED = createField("compressed", org.jooq.impl.SQLDataType.TINYINT, this);

	/**
	 * The table column SYS.SYSTABCOL.collect_stats
	 */
	public final org.jooq.TableField COLLECT_STATS = createField("collect_stats", org.jooq.impl.SQLDataType.TINYINT, this);

	/**
	 * The table column SYS.SYSTABCOL.inline_max
	 */
	public final org.jooq.TableField INLINE_MAX = createField("inline_max", org.jooq.impl.SQLDataType.SMALLINT, this);

	/**
	 * The table column SYS.SYSTABCOL.inline_long
	 */
	public final org.jooq.TableField INLINE_LONG = createField("inline_long", org.jooq.impl.SQLDataType.SMALLINT, this);

	/**
	 * The table column SYS.SYSTABCOL.lob_index
	 */
	public final org.jooq.TableField LOB_INDEX = createField("lob_index", org.jooq.impl.SQLDataType.TINYINT, this);

	/**
	 * The table column SYS.SYSTABCOL.base_type_str
	 */
	public final org.jooq.TableField BASE_TYPE_STR = createField("base_type_str", org.jooq.impl.SQLDataType.VARCHAR, this);

	public Systabcol() {
		super("SYSTABCOL", org.jooq.util.sybase.sys.Sys.SYS);
	}

	public Systabcol(java.lang.String alias) {
		super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Systabcol.SYSTABCOL);
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy