org.jooq.util.sybase.sys.tables.Sysprocparm 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 Sysprocparm extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = -205266930;
/**
* The singleton instance of SYS.SYSPROCPARM
*/
public static final org.jooq.util.sybase.sys.tables.Sysprocparm SYSPROCPARM = new org.jooq.util.sybase.sys.tables.Sysprocparm();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The table column SYS.SYSPROCPARM.proc_id
*/
public final org.jooq.TableField PROC_ID = createField("proc_id", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The table column SYS.SYSPROCPARM.parm_id
*/
public final org.jooq.TableField PARM_ID = createField("parm_id", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* The table column SYS.SYSPROCPARM.parm_type
*/
public final org.jooq.TableField PARM_TYPE = createField("parm_type", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* The table column SYS.SYSPROCPARM.parm_mode_in
*/
public final org.jooq.TableField PARM_MODE_IN = createField("parm_mode_in", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The table column SYS.SYSPROCPARM.parm_mode_out
*/
public final org.jooq.TableField PARM_MODE_OUT = createField("parm_mode_out", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The table column SYS.SYSPROCPARM.domain_id
*/
public final org.jooq.TableField DOMAIN_ID = createField("domain_id", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* The table column SYS.SYSPROCPARM.width
*/
public final org.jooq.TableField WIDTH = createField("width", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* The table column SYS.SYSPROCPARM.scale
*/
public final org.jooq.TableField SCALE = createField("scale", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* The table column SYS.SYSPROCPARM.user_type
*/
public final org.jooq.TableField USER_TYPE = createField("user_type", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* The table column SYS.SYSPROCPARM.parm_name
*/
public final org.jooq.TableField PARM_NAME = createField("parm_name", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The table column SYS.SYSPROCPARM.default
*/
public final org.jooq.TableField DEFAULT = createField("default", org.jooq.impl.SQLDataType.LONGVARCHAR, this);
/**
* The table column SYS.SYSPROCPARM.remarks
*/
public final org.jooq.TableField REMARKS = createField("remarks", org.jooq.impl.SQLDataType.LONGVARCHAR, this);
/**
* The table column SYS.SYSPROCPARM.base_type_str
*/
public final org.jooq.TableField BASE_TYPE_STR = createField("base_type_str", org.jooq.impl.SQLDataType.VARCHAR, this);
public Sysprocparm() {
super("SYSPROCPARM", org.jooq.util.sybase.sys.Sys.SYS);
}
public Sysprocparm(java.lang.String alias) {
super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Sysprocparm.SYSPROCPARM);
}
@Override
public org.jooq.util.sybase.sys.tables.Sysprocparm as(java.lang.String alias) {
return new org.jooq.util.sybase.sys.tables.Sysprocparm(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy