org.jooq.util.sybase.sys.tables.Syssequence Maven / Gradle / Ivy
/**
* 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.6.0"},
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings("all")
public class Syssequence extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = 1132238936;
/**
* The singleton instance of SYS.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
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The table column SYS.SYSSEQUENCE.object_id
*/
public final org.jooq.TableField OBJECT_ID = createField("object_id", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* The table column SYS.SYSSEQUENCE.owner
*/
public final org.jooq.TableField OWNER = createField("owner", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The table column SYS.SYSSEQUENCE.min_value
*/
public final org.jooq.TableField MIN_VALUE = createField("min_value", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* The table column SYS.SYSSEQUENCE.max_value
*/
public final org.jooq.TableField MAX_VALUE = createField("max_value", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* The table column SYS.SYSSEQUENCE.increment_by
*/
public final org.jooq.TableField INCREMENT_BY = createField("increment_by", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* The table column SYS.SYSSEQUENCE.start_with
*/
public final org.jooq.TableField START_WITH = createField("start_with", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* The table column SYS.SYSSEQUENCE.cache
*/
public final org.jooq.TableField CACHE = createField("cache", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The table column SYS.SYSSEQUENCE.cycle
*/
public final org.jooq.TableField CYCLE = createField("cycle", org.jooq.impl.SQLDataType.TINYINT, this);
/**
* The table column SYS.SYSSEQUENCE.resume_at
*/
public final org.jooq.TableField RESUME_AT = createField("resume_at", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* The table column SYS.SYSSEQUENCE.sequence_name
*/
public final org.jooq.TableField SEQUENCE_NAME = createField("sequence_name", org.jooq.impl.SQLDataType.CHAR, this);
public Syssequence() {
super("SYSSEQUENCE", org.jooq.util.sybase.sys.Sys.SYS);
}
public 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