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

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

	private static final long serialVersionUID = -500789497;

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

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

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

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

	/**
	 * The table column SYS.SYSTAB.count
	 */
	public final org.jooq.TableField COUNT = createField("count", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * The table column SYS.SYSTAB.creator
	 */
	public final org.jooq.TableField CREATOR = createField("creator", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The table column SYS.SYSTAB.table_page_count
	 */
	public final org.jooq.TableField TABLE_PAGE_COUNT = createField("table_page_count", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The table column SYS.SYSTAB.ext_page_count
	 */
	public final org.jooq.TableField EXT_PAGE_COUNT = createField("ext_page_count", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The table column SYS.SYSTAB.commit_action
	 */
	public final org.jooq.TableField COMMIT_ACTION = createField("commit_action", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The table column SYS.SYSTAB.share_type
	 */
	public final org.jooq.TableField SHARE_TYPE = createField("share_type", org.jooq.impl.SQLDataType.INTEGER, this);

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

	/**
	 * The table column SYS.SYSTAB.last_modified_at
	 */
	public final org.jooq.TableField LAST_MODIFIED_AT = createField("last_modified_at", org.jooq.impl.SQLDataType.TIMESTAMP, this);

	/**
	 * The table column SYS.SYSTAB.table_name
	 */
	public final org.jooq.TableField TABLE_NAME = createField("table_name", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * The table column SYS.SYSTAB.table_type
	 */
	public final org.jooq.TableField TABLE_TYPE = createField("table_type", org.jooq.impl.SQLDataType.TINYINT, this);

	/**
	 * The table column SYS.SYSTAB.replicate
	 */
	public final org.jooq.TableField REPLICATE = createField("replicate", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * The table column SYS.SYSTAB.server_type
	 */
	public final org.jooq.TableField SERVER_TYPE = createField("server_type", org.jooq.impl.SQLDataType.TINYINT, this);

	/**
	 * The table column SYS.SYSTAB.tab_page_list
	 */
	public final org.jooq.TableField TAB_PAGE_LIST = createField("tab_page_list", org.jooq.impl.SQLDataType.LONGVARBINARY, this);

	/**
	 * The table column SYS.SYSTAB.ext_page_list
	 */
	public final org.jooq.TableField EXT_PAGE_LIST = createField("ext_page_list", org.jooq.impl.SQLDataType.LONGVARBINARY, this);

	/**
	 * The table column SYS.SYSTAB.pct_free
	 */
	public final org.jooq.TableField PCT_FREE = createField("pct_free", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The table column SYS.SYSTAB.clustered_index_id
	 */
	public final org.jooq.TableField CLUSTERED_INDEX_ID = createField("clustered_index_id", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The table column SYS.SYSTAB.encrypted
	 */
	public final org.jooq.TableField ENCRYPTED = createField("encrypted", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * The table column SYS.SYSTAB.last_modified_tsn
	 */
	public final org.jooq.TableField LAST_MODIFIED_TSN = createField("last_modified_tsn", org.jooq.impl.SQLDataType.BIGINT, this);

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

	/**
	 * The table column SYS.SYSTAB.table_type_str
	 */
	public final org.jooq.TableField TABLE_TYPE_STR = createField("table_type_str", org.jooq.impl.SQLDataType.CHAR, this);

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy