org.ehrbase.jooq.pg.tables.EhrFolderDataHistory Maven / Gradle / Ivy
The newest version!
/*
* This file is generated by jOOQ.
*/
package org.ehrbase.jooq.pg.tables;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.UUID;
import org.ehrbase.jooq.pg.Ehr;
import org.ehrbase.jooq.pg.Keys;
import org.ehrbase.jooq.pg.tables.Ehr.EhrPath;
import org.ehrbase.jooq.pg.tables.EhrFolderVersionHistory.EhrFolderVersionHistoryPath;
import org.ehrbase.jooq.pg.tables.records.EhrFolderDataHistoryRecord;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.InverseForeignKey;
import org.jooq.JSONB;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
import org.jooq.Stringly;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.TableOptions;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.SQLDataType;
import org.jooq.impl.TableImpl;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class EhrFolderDataHistory extends TableImpl {
private static final long serialVersionUID = 1L;
/**
* The reference instance of ehr.ehr_folder_data_history
*/
public static final EhrFolderDataHistory EHR_FOLDER_DATA_HISTORY = new EhrFolderDataHistory();
/**
* The class holding records for this type
*/
@Override
public Class getRecordType() {
return EhrFolderDataHistoryRecord.class;
}
/**
* The column ehr.ehr_folder_data_history.vo_id
.
*/
public final TableField VO_ID = createField(DSL.name("vo_id"), SQLDataType.UUID.nullable(false), this, "");
/**
* The column ehr.ehr_folder_data_history.num
.
*/
public final TableField NUM = createField(DSL.name("num"), SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column ehr.ehr_folder_data_history.ehr_id
.
*/
public final TableField EHR_ID = createField(DSL.name("ehr_id"), SQLDataType.UUID.nullable(false), this, "");
/**
* The column ehr.ehr_folder_data_history.ehr_folders_idx
.
*/
public final TableField EHR_FOLDERS_IDX = createField(DSL.name("ehr_folders_idx"), SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column ehr.ehr_folder_data_history.citem_num
.
*/
public final TableField CITEM_NUM = createField(DSL.name("citem_num"), SQLDataType.INTEGER, this, "");
/**
* The column ehr.ehr_folder_data_history.rm_entity
.
*/
public final TableField RM_ENTITY = createField(DSL.name("rm_entity"), SQLDataType.CLOB.nullable(false), this, "");
/**
* The column ehr.ehr_folder_data_history.entity_concept
.
*/
public final TableField ENTITY_CONCEPT = createField(DSL.name("entity_concept"), SQLDataType.CLOB, this, "");
/**
* The column ehr.ehr_folder_data_history.entity_name
.
*/
public final TableField ENTITY_NAME = createField(DSL.name("entity_name"), SQLDataType.CLOB, this, "");
/**
* The column ehr.ehr_folder_data_history.entity_attribute
.
*/
public final TableField ENTITY_ATTRIBUTE = createField(DSL.name("entity_attribute"), SQLDataType.CLOB, this, "");
/**
* The column ehr.ehr_folder_data_history.entity_idx
.
*/
public final TableField ENTITY_IDX = createField(DSL.name("entity_idx"), SQLDataType.CLOB.nullable(false), this, "");
/**
* The column ehr.ehr_folder_data_history.entity_idx_len
.
*/
public final TableField ENTITY_IDX_LEN = createField(DSL.name("entity_idx_len"), SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column ehr.ehr_folder_data_history.data
.
*/
public final TableField DATA = createField(DSL.name("data"), SQLDataType.JSONB.nullable(false), this, "");
/**
* The column ehr.ehr_folder_data_history.sys_version
.
*/
public final TableField SYS_VERSION = createField(DSL.name("sys_version"), SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column ehr.ehr_folder_data_history.parent_num
.
*/
public final TableField PARENT_NUM = createField(DSL.name("parent_num"), SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column ehr.ehr_folder_data_history.num_cap
.
*/
public final TableField NUM_CAP = createField(DSL.name("num_cap"), SQLDataType.INTEGER.nullable(false), this, "");
private EhrFolderDataHistory(Name alias, Table aliased) {
this(alias, aliased, (Field>[]) null, null);
}
private EhrFolderDataHistory(Name alias, Table aliased, Field>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased ehr.ehr_folder_data_history
table
* reference
*/
public EhrFolderDataHistory(String alias) {
this(DSL.name(alias), EHR_FOLDER_DATA_HISTORY);
}
/**
* Create an aliased ehr.ehr_folder_data_history
table
* reference
*/
public EhrFolderDataHistory(Name alias) {
this(alias, EHR_FOLDER_DATA_HISTORY);
}
/**
* Create a ehr.ehr_folder_data_history
table reference
*/
public EhrFolderDataHistory() {
this(DSL.name("ehr_folder_data_history"), null);
}
public EhrFolderDataHistory(Table path, ForeignKey childPath, InverseForeignKey parentPath) {
super(path, childPath, parentPath, EHR_FOLDER_DATA_HISTORY);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class EhrFolderDataHistoryPath extends EhrFolderDataHistory implements Path {
private static final long serialVersionUID = 1L;
public EhrFolderDataHistoryPath(Table path, ForeignKey childPath, InverseForeignKey parentPath) {
super(path, childPath, parentPath);
}
private EhrFolderDataHistoryPath(Name alias, Table aliased) {
super(alias, aliased);
}
@Override
public EhrFolderDataHistoryPath as(String alias) {
return new EhrFolderDataHistoryPath(DSL.name(alias), this);
}
@Override
public EhrFolderDataHistoryPath as(Name alias) {
return new EhrFolderDataHistoryPath(alias, this);
}
@Override
public EhrFolderDataHistoryPath as(Table> alias) {
return new EhrFolderDataHistoryPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Ehr.EHR;
}
@Override
public UniqueKey getPrimaryKey() {
return Keys.EHR_FOLDER_HISTORY_PKEY;
}
@Override
public List> getReferences() {
return Arrays.asList(Keys.EHR_FOLDER_DATA_HISTORY__EHR_FOLDER_DATA_HISTORY_EHR_ID_EHR_FOLDERS_IDX_SYS_VERSION_FKEY, Keys.EHR_FOLDER_DATA_HISTORY__EHR_FOLDER_HISTORY_EHR_ID_FKEY);
}
private transient EhrFolderVersionHistoryPath _ehrFolderVersionHistory;
/**
* Get the implicit join path to the
* ehr.ehr_folder_version_history
table.
*/
public EhrFolderVersionHistoryPath ehrFolderVersionHistory() {
if (_ehrFolderVersionHistory == null)
_ehrFolderVersionHistory = new EhrFolderVersionHistoryPath(this, Keys.EHR_FOLDER_DATA_HISTORY__EHR_FOLDER_DATA_HISTORY_EHR_ID_EHR_FOLDERS_IDX_SYS_VERSION_FKEY, null);
return _ehrFolderVersionHistory;
}
private transient EhrPath _ehr;
/**
* Get the implicit join path to the ehr.ehr
table.
*/
public EhrPath ehr() {
if (_ehr == null)
_ehr = new EhrPath(this, Keys.EHR_FOLDER_DATA_HISTORY__EHR_FOLDER_HISTORY_EHR_ID_FKEY, null);
return _ehr;
}
@Override
public EhrFolderDataHistory as(String alias) {
return new EhrFolderDataHistory(DSL.name(alias), this);
}
@Override
public EhrFolderDataHistory as(Name alias) {
return new EhrFolderDataHistory(alias, this);
}
@Override
public EhrFolderDataHistory as(Table> alias) {
return new EhrFolderDataHistory(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public EhrFolderDataHistory rename(String name) {
return new EhrFolderDataHistory(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public EhrFolderDataHistory rename(Name name) {
return new EhrFolderDataHistory(name, null);
}
/**
* Rename this table
*/
@Override
public EhrFolderDataHistory rename(Table> name) {
return new EhrFolderDataHistory(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public EhrFolderDataHistory where(Condition condition) {
return new EhrFolderDataHistory(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public EhrFolderDataHistory where(Collection extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public EhrFolderDataHistory where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public EhrFolderDataHistory where(Field condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public EhrFolderDataHistory where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public EhrFolderDataHistory where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public EhrFolderDataHistory where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public EhrFolderDataHistory where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public EhrFolderDataHistory whereExists(Select> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public EhrFolderDataHistory whereNotExists(Select> select) {
return where(DSL.notExists(select));
}
}