org.jooq.util.sybase.sys.tables.Systable 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 Systable extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = 1960642110;
/**
* The singleton instance of SYSTABLE
*/
public static final org.jooq.util.sybase.sys.tables.Systable SYSTABLE = new org.jooq.util.sybase.sys.tables.Systable();
/**
* The class holding records for this type
*/
private static final java.lang.Class __RECORD_TYPE = org.jooq.util.sybase.sys.tables.records.SystableRecord.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 FILE_ID = createField("file_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 FIRST_PAGE = createField("first_page", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField LAST_PAGE = createField("last_page", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField PRIMARY_ROOT = createField("primary_root", org.jooq.impl.SQLDataType.INTEGER, 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 FIRST_EXT_PAGE = createField("first_ext_page", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField LAST_EXT_PAGE = createField("last_ext_page", org.jooq.impl.SQLDataType.SMALLINT, 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 OBJECT_ID = createField("object_id", org.jooq.impl.SQLDataType.BIGINT, 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.CHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField VIEW_DEF = createField("view_def", org.jooq.impl.SQLDataType.LONGVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField REMARKS = createField("remarks", org.jooq.impl.SQLDataType.LONGVARCHAR, 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 EXISTING_OBJ = createField("existing_obj", org.jooq.impl.SQLDataType.CHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField REMOTE_LOCATION = createField("remote_location", org.jooq.impl.SQLDataType.LONGVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField REMOTE_OBJTYPE = createField("remote_objtype", org.jooq.impl.SQLDataType.CHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField SRVID = createField("srvid", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField SERVER_TYPE = createField("server_type", org.jooq.impl.SQLDataType.CHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField PRIMARY_HASH_LIMIT = createField("primary_hash_limit", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField PAGE_MAP_START = createField("page_map_start", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField SOURCE = createField("source", org.jooq.impl.SQLDataType.LONGVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField ENCRYPTED = createField("encrypted", org.jooq.impl.SQLDataType.CHAR, this);
/**
* No further instances allowed
*/
private Systable() {
super("SYSTABLE", org.jooq.util.sybase.sys.Sys.SYS);
}
/**
* No further instances allowed
*/
private Systable(java.lang.String alias) {
super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Systable.SYSTABLE);
}
@Override
public org.jooq.util.sybase.sys.tables.Systable as(java.lang.String alias) {
return new org.jooq.util.sybase.sys.tables.Systable(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy