org.jooq.util.sybase.sys.tables.Sysview 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", "3.0.0"},
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings("all")
public class Sysview extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = 1438635405;
/**
* The singleton instance of SYS.SYSVIEW
*/
public static final org.jooq.util.sybase.sys.tables.Sysview SYSVIEW = new org.jooq.util.sybase.sys.tables.Sysview();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The column SYS.SYSVIEW.view_object_id
.
*/
public final org.jooq.TableField VIEW_OBJECT_ID = createField("view_object_id", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* The column SYS.SYSVIEW.view_def
.
*/
public final org.jooq.TableField VIEW_DEF = createField("view_def", org.jooq.impl.SQLDataType.LONGVARCHAR, this);
/**
* The column SYS.SYSVIEW.mv_build_type
.
*/
public final org.jooq.TableField MV_BUILD_TYPE = createField("mv_build_type", org.jooq.impl.SQLDataType.TINYINT, this);
/**
* The column SYS.SYSVIEW.mv_refresh_type
.
*/
public final org.jooq.TableField MV_REFRESH_TYPE = createField("mv_refresh_type", org.jooq.impl.SQLDataType.TINYINT, this);
/**
* The column SYS.SYSVIEW.mv_use_in_optimization
.
*/
public final org.jooq.TableField MV_USE_IN_OPTIMIZATION = createField("mv_use_in_optimization", org.jooq.impl.SQLDataType.TINYINT, this);
/**
* The column SYS.SYSVIEW.mv_last_refreshed_at
.
*/
public final org.jooq.TableField MV_LAST_REFRESHED_AT = createField("mv_last_refreshed_at", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* The column SYS.SYSVIEW.mv_known_stale_at
.
*/
public final org.jooq.TableField MV_KNOWN_STALE_AT = createField("mv_known_stale_at", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* The column SYS.SYSVIEW.mv_last_refreshed_tsn
.
*/
public final org.jooq.TableField MV_LAST_REFRESHED_TSN = createField("mv_last_refreshed_tsn", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* Create a SYS.SYSVIEW
table reference
*/
public Sysview() {
super("SYSVIEW", org.jooq.util.sybase.sys.Sys.SYS);
}
/**
* Create an aliased SYS.SYSVIEW
table reference
*/
public Sysview(java.lang.String alias) {
super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Sysview.SYSVIEW);
}
/**
* {@inheritDoc}
*/
@Override
public org.jooq.util.sybase.sys.tables.Sysview as(java.lang.String alias) {
return new org.jooq.util.sybase.sys.tables.Sysview(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy