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.6.0"},
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings("all")
public class DbSerial extends org.jooq.impl.UpdatableTableImpl {
private static final long serialVersionUID = -1014714529;
/**
* 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
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The table column DBA.db_serial.name
*
* This column is part of the table's PRIMARY KEY
*/
public final org.jooq.TableField NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* The table column DBA.db_serial.owner
*
* 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);
/**
* The table column DBA.db_serial.current_val
*/
public final org.jooq.TableField CURRENT_VAL = createField("current_val", org.jooq.impl.SQLDataType.DECIMAL_INTEGER, this);
/**
* The table column DBA.db_serial.increment_val
*/
public final org.jooq.TableField INCREMENT_VAL = createField("increment_val", org.jooq.impl.SQLDataType.DECIMAL_INTEGER, this);
/**
* The table column DBA.db_serial.max_val
*/
public final org.jooq.TableField MAX_VAL = createField("max_val", org.jooq.impl.SQLDataType.DECIMAL_INTEGER, this);
/**
* The table column DBA.db_serial.min_val
*/
public final org.jooq.TableField MIN_VAL = createField("min_val", org.jooq.impl.SQLDataType.DECIMAL_INTEGER, this);
/**
* The table column DBA.db_serial.cyclic
*/
public final org.jooq.TableField CYCLIC = createField("cyclic", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The table column DBA.db_serial.started
*/
public final org.jooq.TableField STARTED = createField("started", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The table column DBA.db_serial.class_name
*/
public final org.jooq.TableField CLASS_NAME = createField("class_name", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* The table column DBA.db_serial.att_name
*/
public final org.jooq.TableField ATT_NAME = createField("att_name", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* The table column DBA.db_serial.cached_num
*/
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.UniqueKey getMainKey() {
return org.jooq.util.cubrid.dba.Keys.DB_SERIAL__PK_DB_SERIAL_NAME;
}
@Override
@SuppressWarnings("unchecked")
public java.util.List> getKeys() {
return java.util.Arrays.>asList(org.jooq.util.cubrid.dba.Keys.DB_SERIAL__PK_DB_SERIAL_NAME);
}
@Override
public org.jooq.util.cubrid.dba.tables.DbSerial as(java.lang.String alias) {
return new org.jooq.util.cubrid.dba.tables.DbSerial(alias);
}
}