org.jooq.util.sybase.sys.tables.Systab Maven / Gradle / Ivy
/**
* 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.0.2"},
comments = "This class is generated by jOOQ")
public class Systab extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = -1674813992;
/**
* The singleton instance of 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
*/
private static final java.lang.Class __RECORD_TYPE = org.jooq.util.sybase.sys.tables.records.SystabRecord.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*/
public final org.jooq.TableField TABLE_ID = createField("table_id", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField DBSPACE_ID = createField("dbspace_id", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField COUNT = createField("count", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField CREATOR = createField("creator", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField TABLE_PAGE_COUNT = createField("table_page_count", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField EXT_PAGE_COUNT = createField("ext_page_count", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField COMMIT_ACTION = createField("commit_action", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField SHARE_TYPE = createField("share_type", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField OBJECT_ID = createField("object_id", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField LAST_MODIFIED_AT = createField("last_modified_at", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* An uncommented item
*/
public final org.jooq.TableField TABLE_NAME = createField("table_name", org.jooq.impl.SQLDataType.CHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField TABLE_TYPE = createField("table_type", org.jooq.impl.SQLDataType.TINYINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField REPLICATE = createField("replicate", org.jooq.impl.SQLDataType.CHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField SERVER_TYPE = createField("server_type", org.jooq.impl.SQLDataType.TINYINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField TAB_PAGE_LIST = createField("tab_page_list", org.jooq.impl.SQLDataType.LONGVARBINARY, this);
/**
* An uncommented item
*/
public final org.jooq.TableField EXT_PAGE_LIST = createField("ext_page_list", org.jooq.impl.SQLDataType.LONGVARBINARY, this);
/**
* An uncommented item
*/
public final org.jooq.TableField PCT_FREE = createField("pct_free", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField CLUSTERED_INDEX_ID = createField("clustered_index_id", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField ENCRYPTED = createField("encrypted", org.jooq.impl.SQLDataType.CHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField LAST_MODIFIED_TSN = createField("last_modified_tsn", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField FILE_ID = createField("file_id", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField TABLE_TYPE_STR = createField("table_type_str", org.jooq.impl.SQLDataType.CHAR, this);
/**
* No further instances allowed
*/
private Systab() {
super("SYSTAB", org.jooq.util.sybase.sys.Sys.SYS);
}
/**
* No further instances allowed
*/
private 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