org.jooq.util.sybase.sys.tables.Sysdomain 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 Sysdomain extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = -123244719;
/**
* The singleton instance of SYS.SYSDOMAIN
*/
public static final org.jooq.util.sybase.sys.tables.Sysdomain SYSDOMAIN = new org.jooq.util.sybase.sys.tables.Sysdomain();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The table column SYS.SYSDOMAIN.domain_id
*/
public final org.jooq.TableField DOMAIN_ID = createField("domain_id", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* The table column SYS.SYSDOMAIN.domain_name
*/
public final org.jooq.TableField DOMAIN_NAME = createField("domain_name", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The table column SYS.SYSDOMAIN.type_id
*/
public final org.jooq.TableField TYPE_ID = createField("type_id", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* The table column SYS.SYSDOMAIN.precision
*/
public final org.jooq.TableField PRECISION = createField("precision", org.jooq.impl.SQLDataType.SMALLINT, this);
public Sysdomain() {
super("SYSDOMAIN", org.jooq.util.sybase.sys.Sys.SYS);
}
public Sysdomain(java.lang.String alias) {
super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Sysdomain.SYSDOMAIN);
}
@Override
public org.jooq.util.sybase.sys.tables.Sysdomain as(java.lang.String alias) {
return new org.jooq.util.sybase.sys.tables.Sysdomain(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy