org.jooq.util.sybase.sys.tables.Sysidxcol 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.0"},
comments = "This class is generated by jOOQ")
public class Sysidxcol extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = 1112348560;
/**
* The singleton instance of SYSIDXCOL
*/
public static final org.jooq.util.sybase.sys.tables.Sysidxcol SYSIDXCOL = new org.jooq.util.sybase.sys.tables.Sysidxcol();
/**
* The class holding records for this type
*/
private static final java.lang.Class __RECORD_TYPE = org.jooq.util.sybase.sys.tables.records.SysidxcolRecord.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 SEQUENCE = createField("sequence", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField COLUMN_ID = createField("column_id", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField ORDER = createField("order", org.jooq.impl.SQLDataType.CHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField PRIMARY_COLUMN_ID = createField("primary_column_id", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* No further instances allowed
*/
private Sysidxcol() {
super("SYSIDXCOL", org.jooq.util.sybase.sys.Sys.SYS);
}
/**
* No further instances allowed
*/
private Sysidxcol(java.lang.String alias) {
super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Sysidxcol.SYSIDXCOL);
}
@Override
public org.jooq.util.sybase.sys.tables.Sysidxcol as(java.lang.String alias) {
return new org.jooq.util.sybase.sys.tables.Sysidxcol(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy