org.jooq.util.cubrid.dba.tables.DbAttribute 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", "2.6.0"},
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings("all")
public class DbAttribute extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = -44279191;
/**
* The singleton instance of DBA.db_attribute
*/
public static final org.jooq.util.cubrid.dba.tables.DbAttribute DB_ATTRIBUTE = new org.jooq.util.cubrid.dba.tables.DbAttribute();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The table column DBA.db_attribute.attr_name
*/
public final org.jooq.TableField ATTR_NAME = createField("attr_name", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* The table column DBA.db_attribute.class_name
*/
public final org.jooq.TableField CLASS_NAME = createField("class_name", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* The table column DBA.db_attribute.attr_type
*/
public final org.jooq.TableField ATTR_TYPE = createField("attr_type", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* The table column DBA.db_attribute.def_order
*/
public final org.jooq.TableField DEF_ORDER = createField("def_order", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The table column DBA.db_attribute.from_class_name
*/
public final org.jooq.TableField FROM_CLASS_NAME = createField("from_class_name", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* The table column DBA.db_attribute.from_attr_name
*/
public final org.jooq.TableField FROM_ATTR_NAME = createField("from_attr_name", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* The table column DBA.db_attribute.data_type
*/
public final org.jooq.TableField DATA_TYPE = createField("data_type", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* The table column DBA.db_attribute.prec
*/
public final org.jooq.TableField PREC = createField("prec", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The table column DBA.db_attribute.scale
*/
public final org.jooq.TableField SCALE = createField("scale", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The table column DBA.db_attribute.code_set
*/
public final org.jooq.TableField CODE_SET = createField("code_set", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The table column DBA.db_attribute.domain_class_name
*/
public final org.jooq.TableField DOMAIN_CLASS_NAME = createField("domain_class_name", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* The table column DBA.db_attribute.default_value
*/
public final org.jooq.TableField DEFAULT_VALUE = createField("default_value", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* The table column DBA.db_attribute.is_nullable
*/
public final org.jooq.TableField IS_NULLABLE = createField("is_nullable", org.jooq.impl.SQLDataType.VARCHAR, this);
public DbAttribute() {
super("db_attribute", org.jooq.util.cubrid.dba.Dba.DBA);
}
public DbAttribute(java.lang.String alias) {
super(alias, org.jooq.util.cubrid.dba.Dba.DBA, org.jooq.util.cubrid.dba.tables.DbAttribute.DB_ATTRIBUTE);
}
@Override
public org.jooq.util.cubrid.dba.tables.DbAttribute as(java.lang.String alias) {
return new org.jooq.util.cubrid.dba.tables.DbAttribute(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy