org.jooq.util.cubrid.dba.tables.DbClass 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", "3.0.0"},
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings("all")
public class DbClass extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = -514600234;
/**
* The singleton instance of db_class
*/
public static final org.jooq.util.cubrid.dba.tables.DbClass DB_CLASS = new org.jooq.util.cubrid.dba.tables.DbClass();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The column db_class.class_name
.
*/
public final org.jooq.TableField CLASS_NAME = createField("class_name", org.jooq.impl.SQLDataType.VARCHAR.length(255), this);
/**
* The column db_class.owner_name
.
*/
public final org.jooq.TableField OWNER_NAME = createField("owner_name", org.jooq.impl.SQLDataType.VARCHAR.length(255), this);
/**
* The column db_class.class_type
.
*/
public final org.jooq.TableField CLASS_TYPE = createField("class_type", org.jooq.impl.SQLDataType.VARCHAR.length(6), this);
/**
* The column db_class.is_system_class
.
*/
public final org.jooq.TableField IS_SYSTEM_CLASS = createField("is_system_class", org.jooq.impl.SQLDataType.VARCHAR.length(3), this);
/**
* The column db_class.partitioned
.
*/
public final org.jooq.TableField PARTITIONED = createField("partitioned", org.jooq.impl.SQLDataType.VARCHAR.length(3), this);
/**
* The column db_class.is_reuse_oid_class
.
*/
public final org.jooq.TableField IS_REUSE_OID_CLASS = createField("is_reuse_oid_class", org.jooq.impl.SQLDataType.VARCHAR.length(3), this);
/**
* Create a db_class
table reference
*/
public DbClass() {
super("db_class", org.jooq.util.cubrid.dba.DefaultSchema.DEFAULT_SCHEMA);
}
/**
* Create an aliased db_class
table reference
*/
public DbClass(java.lang.String alias) {
super(alias, org.jooq.util.cubrid.dba.DefaultSchema.DEFAULT_SCHEMA, org.jooq.util.cubrid.dba.tables.DbClass.DB_CLASS);
}
/**
* {@inheritDoc}
*/
@Override
public org.jooq.util.cubrid.dba.tables.DbClass as(java.lang.String alias) {
return new org.jooq.util.cubrid.dba.tables.DbClass(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy