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

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", "3.4.0" },
                            comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class DbSerial extends org.jooq.impl.TableImpl {

	private static final long serialVersionUID = -1258358481;

	/**
	 * 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).nullable(false), 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).nullable(false).defaulted(true), 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).nullable(false).defaulted(true), 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).nullable(false), 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).nullable(false), this, "");

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

	/**
	 * The column db_serial.started.
	 */
	public final org.jooq.TableField STARTED = createField("started", org.jooq.impl.SQLDataType.INTEGER.defaulted(true), 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.defaulted(true), this, "");

	/**
	 * Create a db_serial table reference
	 */
	public DbSerial() {
		this("db_serial", null);
	}

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

	private DbSerial(java.lang.String alias, org.jooq.Table aliased) {
		this(alias, aliased, null);
	}

	private DbSerial(java.lang.String alias, org.jooq.Table aliased, org.jooq.Field[] parameters) {
		super(alias, org.jooq.util.cubrid.dba.DefaultSchema.DEFAULT_SCHEMA, aliased, parameters, "");
	}

	/**
	 * {@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, this);
	}

	/**
	 * Rename this table
	 */
	public org.jooq.util.cubrid.dba.tables.DbSerial rename(java.lang.String name) {
		return new org.jooq.util.cubrid.dba.tables.DbSerial(name, null);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy