org.jooq.util.cubrid.dba.tables.DbSerial Maven / Gradle / Ivy
/**
* This class is generated by jOOQ
*/
package org.jooq.util.cubrid.dba.tables;
/**
* This class is generated by jOOQ.
*/
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.2.0"},
comments = "This class is generated by jOOQ")
public class DbSerial extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = -1656488487;
/**
* The singleton instance of DBA.db_serial
*/
public static final org.jooq.util.cubrid.dba.tables.DbSerial DB_SERIAL = new org.jooq.util.cubrid.dba.tables.DbSerial();
/**
* 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
*
* PRIMARY KEY
*/
public final org.jooq.TableField NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* An uncommented item
*
* The SQL type of this item (OBJECT) could not be mapped.
* Deserialising this field might not work!
*/
public final org.jooq.TableField OWNER = createField("owner", org.jooq.impl.SQLDataType.OTHER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField CURRENT_VAL = createField("current_val", org.jooq.impl.SQLDataType.DECIMAL_INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField INCREMENT_VAL = createField("increment_val", org.jooq.impl.SQLDataType.DECIMAL_INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField MAX_VAL = createField("max_val", org.jooq.impl.SQLDataType.DECIMAL_INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField MIN_VAL = createField("min_val", org.jooq.impl.SQLDataType.DECIMAL_INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField CYCLIC = createField("cyclic", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField STARTED = createField("started", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField CLASS_NAME = createField("class_name", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField ATT_NAME = createField("att_name", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField CACHED_NUM = createField("cached_num", org.jooq.impl.SQLDataType.INTEGER, this);
public DbSerial() {
super("db_serial", org.jooq.util.cubrid.dba.Dba.DBA);
}
public DbSerial(java.lang.String alias) {
super(alias, org.jooq.util.cubrid.dba.Dba.DBA, org.jooq.util.cubrid.dba.tables.DbSerial.DB_SERIAL);
}
@Override
public org.jooq.util.cubrid.dba.tables.DbSerial as(java.lang.String alias) {
return new org.jooq.util.cubrid.dba.tables.DbSerial(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy