org.jooq.meta.cubrid.dba.tables.DbIndex Maven / Gradle / Ivy
/**
* This class is generated by jOOQ
*/
package org.jooq.meta.cubrid.dba.tables;
/**
* This class is generated by jOOQ.
*/
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class DbIndex extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = -34142941;
/**
* The singleton instance of db_index
*/
public static final org.jooq.meta.cubrid.dba.tables.DbIndex DB_INDEX = new org.jooq.meta.cubrid.dba.tables.DbIndex();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The column db_index.index_name
.
*/
public final org.jooq.TableField INDEX_NAME = createField("index_name", org.jooq.impl.SQLDataType.VARCHAR.length(255), this, "");
/**
* The column db_index.is_unique
.
*/
public final org.jooq.TableField IS_UNIQUE = createField("is_unique", org.jooq.impl.SQLDataType.VARCHAR.length(3), this, "");
/**
* The column db_index.is_reverse
.
*/
public final org.jooq.TableField IS_REVERSE = createField("is_reverse", org.jooq.impl.SQLDataType.VARCHAR.length(3), this, "");
/**
* The column db_index.class_name
.
*/
public final org.jooq.TableField CLASS_NAME = createField("class_name", org.jooq.impl.SQLDataType.VARCHAR.length(255), this, "");
/**
* The column db_index.key_count
.
*/
public final org.jooq.TableField KEY_COUNT = createField("key_count", org.jooq.impl.SQLDataType.INTEGER, this, "");
/**
* The column db_index.is_primary_key
.
*/
public final org.jooq.TableField IS_PRIMARY_KEY = createField("is_primary_key", org.jooq.impl.SQLDataType.VARCHAR.length(3), this, "");
/**
* The column db_index.is_foreign_key
.
*/
public final org.jooq.TableField IS_FOREIGN_KEY = createField("is_foreign_key", org.jooq.impl.SQLDataType.VARCHAR.length(3), this, "");
/**
* The column db_index.filter_expression
.
*/
public final org.jooq.TableField FILTER_EXPRESSION = createField("filter_expression", org.jooq.impl.SQLDataType.VARCHAR.length(255), this, "");
/**
* The column db_index.have_function
.
*/
public final org.jooq.TableField HAVE_FUNCTION = createField("have_function", org.jooq.impl.SQLDataType.VARCHAR.length(3), this, "");
/**
* Create a db_index
table reference
*/
public DbIndex() {
this("db_index", null);
}
/**
* Create an aliased db_index
table reference
*/
public DbIndex(java.lang.String alias) {
this(alias, org.jooq.meta.cubrid.dba.tables.DbIndex.DB_INDEX);
}
private DbIndex(java.lang.String alias, org.jooq.Table aliased) {
this(alias, aliased, null);
}
private DbIndex(java.lang.String alias, org.jooq.Table aliased, org.jooq.Field>[] parameters) {
super(alias, org.jooq.meta.cubrid.dba.DefaultSchema.DEFAULT_SCHEMA, aliased, parameters, "");
}
/**
* {@inheritDoc}
*/
@Override
public org.jooq.meta.cubrid.dba.tables.DbIndex as(java.lang.String alias) {
return new org.jooq.meta.cubrid.dba.tables.DbIndex(alias, this);
}
/**
* Rename this table
*/
public org.jooq.meta.cubrid.dba.tables.DbIndex rename(java.lang.String name) {
return new org.jooq.meta.cubrid.dba.tables.DbIndex(name, null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy