org.jooq.util.sybase.sys.tables.Sysidx 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.3.0"},
comments = "This class is generated by jOOQ")
public class Sysidx extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = -1878401416;
/**
* The singleton instance of SYS.SYSIDX
*/
public static final org.jooq.util.sybase.sys.tables.Sysidx SYSIDX = new org.jooq.util.sybase.sys.tables.Sysidx();
/**
* The class holding records for this type
*/
private static final java.lang.Class __RECORD_TYPE = org.jooq.Record.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 INDEX_ID = createField("index_id", 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 PHYS_INDEX_ID = createField("phys_index_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 INDEX_CATEGORY = createField("index_category", org.jooq.impl.SQLDataType.TINYINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField UNIQUE = createField("unique", org.jooq.impl.SQLDataType.TINYINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField INDEX_NAME = createField("index_name", org.jooq.impl.SQLDataType.CHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField NOT_ENFORCED = createField("not_enforced", org.jooq.impl.SQLDataType.CHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField FILE_ID = createField("file_id", org.jooq.impl.SQLDataType.SMALLINT, this);
public Sysidx() {
super("SYSIDX", org.jooq.util.sybase.sys.Sys.SYS);
}
public Sysidx(java.lang.String alias) {
super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Sysidx.SYSIDX);
}
@Override
public org.jooq.util.sybase.sys.tables.Sysidx as(java.lang.String alias) {
return new org.jooq.util.sybase.sys.tables.Sysidx(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy