All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.util.cubrid.dba.tables.DbSerial Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
/**
 * 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", "3.0.0"},
                            comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings("all")
public class DbSerial extends org.jooq.impl.TableImpl {

	private static final long serialVersionUID = 1100309797;

	/**
	 * The singleton instance of 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 column db_serial.name. 
	 */
	public final org.jooq.TableField NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR.length(1073741823), this);

	/**
	 * The column db_serial.owner. 
	 */
	public final org.jooq.TableField OWNER = createField("owner", org.jooq.impl.SQLDataType.OTHER, this);

	/**
	 * The column db_serial.current_val. 
	 */
	public final org.jooq.TableField CURRENT_VAL = createField("current_val", org.jooq.impl.SQLDataType.DECIMAL_INTEGER.precision(38), this);

	/**
	 * The column db_serial.increment_val. 
	 */
	public final org.jooq.TableField INCREMENT_VAL = createField("increment_val", org.jooq.impl.SQLDataType.DECIMAL_INTEGER.precision(38), this);

	/**
	 * The column db_serial.max_val. 
	 */
	public final org.jooq.TableField MAX_VAL = createField("max_val", org.jooq.impl.SQLDataType.DECIMAL_INTEGER.precision(38), this);

	/**
	 * The column db_serial.min_val. 
	 */
	public final org.jooq.TableField MIN_VAL = createField("min_val", org.jooq.impl.SQLDataType.DECIMAL_INTEGER.precision(38), this);

	/**
	 * The column db_serial.cyclic. 
	 */
	public final org.jooq.TableField CYCLIC = createField("cyclic", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column db_serial.started. 
	 */
	public final org.jooq.TableField STARTED = createField("started", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * The column db_serial.class_name. 
	 */
	public final org.jooq.TableField CLASS_NAME = createField("class_name", org.jooq.impl.SQLDataType.VARCHAR.length(1073741823), this);

	/**
	 * The column db_serial.att_name. 
	 */
	public final org.jooq.TableField ATT_NAME = createField("att_name", org.jooq.impl.SQLDataType.VARCHAR.length(1073741823), this);

	/**
	 * The column db_serial.cached_num. 
	 */
	public final org.jooq.TableField CACHED_NUM = createField("cached_num", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * Create a db_serial table reference
	 */
	public DbSerial() {
		super("db_serial", org.jooq.util.cubrid.dba.DefaultSchema.DEFAULT_SCHEMA);
	}

	/**
	 * Create an aliased db_serial table reference
	 */
	public DbSerial(java.lang.String alias) {
		super(alias, org.jooq.util.cubrid.dba.DefaultSchema.DEFAULT_SCHEMA, org.jooq.util.cubrid.dba.tables.DbSerial.DB_SERIAL);
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public org.jooq.UniqueKey getPrimaryKey() {
		return org.jooq.util.cubrid.dba.Keys.DB_SERIAL__PK_DB_SERIAL_NAME;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public java.util.List> getKeys() {
		return java.util.Arrays.>asList(org.jooq.util.cubrid.dba.Keys.DB_SERIAL__PK_DB_SERIAL_NAME);
	}

	/**
	 * {@inheritDoc}
	 */
	@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