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

org.jooq.util.sybase.sys.tables.Syssequence Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
/**
 * 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.2"},
                            comments = "This class is generated by jOOQ")
public class Syssequence extends org.jooq.impl.TableImpl {

	private static final long serialVersionUID = -1217102765;

	/**
	 * The singleton instance of SYSSEQUENCE
	 */
	public static final org.jooq.util.sybase.sys.tables.Syssequence SYSSEQUENCE = new org.jooq.util.sybase.sys.tables.Syssequence();

	/**
	 * The class holding records for this type
	 */
	private static final java.lang.Class __RECORD_TYPE = org.jooq.util.sybase.sys.tables.records.SyssequenceRecord.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 OBJECT_ID = createField("object_id", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField OWNER = createField("owner", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField MIN_VALUE = createField("min_value", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField MAX_VALUE = createField("max_value", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField INCREMENT_BY = createField("increment_by", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField START_WITH = createField("start_with", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField CACHE = createField("cache", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField CYCLE = createField("cycle", org.jooq.impl.SQLDataType.TINYINT, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField RESUME_AT = createField("resume_at", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField SEQUENCE_NAME = createField("sequence_name", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * No further instances allowed
	 */
	private Syssequence() {
		super("SYSSEQUENCE", org.jooq.util.sybase.sys.Sys.SYS);
	}

	/**
	 * No further instances allowed
	 */
	private Syssequence(java.lang.String alias) {
		super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Syssequence.SYSSEQUENCE);
	}

	@Override
	public org.jooq.util.sybase.sys.tables.Syssequence as(java.lang.String alias) {
		return new org.jooq.util.sybase.sys.tables.Syssequence(alias);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy