/*
 * This file is generated by jOOQ.
 */
package org.jooq.meta.firebird.rdb;


import java.util.Arrays;
import java.util.List;

import org.jooq.Catalog;
import org.jooq.Domain;
import org.jooq.Table;
import org.jooq.impl.SchemaImpl;
import org.jooq.meta.firebird.rdb.tables.Rdb$checkConstraints;
import org.jooq.meta.firebird.rdb.tables.Rdb$fields;
import org.jooq.meta.firebird.rdb.tables.Rdb$generators;
import org.jooq.meta.firebird.rdb.tables.Rdb$indexSegments;
import org.jooq.meta.firebird.rdb.tables.Rdb$indices;
import org.jooq.meta.firebird.rdb.tables.Rdb$procedureParameters;
import org.jooq.meta.firebird.rdb.tables.Rdb$procedures;
import org.jooq.meta.firebird.rdb.tables.Rdb$refConstraints;
import org.jooq.meta.firebird.rdb.tables.Rdb$relationConstraints;
import org.jooq.meta.firebird.rdb.tables.Rdb$relationFields;
import org.jooq.meta.firebird.rdb.tables.Rdb$relations;
import org.jooq.meta.firebird.rdb.tables.Rdb$triggers;


This class is generated by jOOQ.
/** * This class is generated by jOOQ. */
@SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class DefaultSchema extends SchemaImpl { private static final long serialVersionUID = 1452293140;
The reference instance of DEFAULT_SCHEMA
/** * The reference instance of <code>DEFAULT_SCHEMA</code> */
public static final DefaultSchema DEFAULT_SCHEMA = new DefaultSchema();
The table RDB$CHECK_CONSTRAINTS.
/** * The table <code>RDB$CHECK_CONSTRAINTS</code>. */
public final Rdb$checkConstraints RDB$CHECK_CONSTRAINTS = Rdb$checkConstraints.RDB$CHECK_CONSTRAINTS;
The table RDB$FIELDS.
/** * The table <code>RDB$FIELDS</code>. */
public final Rdb$fields RDB$FIELDS = Rdb$fields.RDB$FIELDS;
The table RDB$GENERATORS.
/** * The table <code>RDB$GENERATORS</code>. */
public final Rdb$generators RDB$GENERATORS = Rdb$generators.RDB$GENERATORS;
The table RDB$INDEX_SEGMENTS.
/** * The table <code>RDB$INDEX_SEGMENTS</code>. */
public final Rdb$indexSegments RDB$INDEX_SEGMENTS = Rdb$indexSegments.RDB$INDEX_SEGMENTS;
The table RDB$INDICES.
/** * The table <code>RDB$INDICES</code>. */
public final Rdb$indices RDB$INDICES = Rdb$indices.RDB$INDICES;
The table RDB$PROCEDURE_PARAMETERS.
/** * The table <code>RDB$PROCEDURE_PARAMETERS</code>. */
public final Rdb$procedureParameters RDB$PROCEDURE_PARAMETERS = Rdb$procedureParameters.RDB$PROCEDURE_PARAMETERS;
The table RDB$PROCEDURES.
/** * The table <code>RDB$PROCEDURES</code>. */
public final Rdb$procedures RDB$PROCEDURES = Rdb$procedures.RDB$PROCEDURES;
The table RDB$REF_CONSTRAINTS.
/** * The table <code>RDB$REF_CONSTRAINTS</code>. */
public final Rdb$refConstraints RDB$REF_CONSTRAINTS = Rdb$refConstraints.RDB$REF_CONSTRAINTS;
The table RDB$RELATION_CONSTRAINTS.
/** * The table <code>RDB$RELATION_CONSTRAINTS</code>. */
public final Rdb$relationConstraints RDB$RELATION_CONSTRAINTS = Rdb$relationConstraints.RDB$RELATION_CONSTRAINTS;
The table RDB$RELATION_FIELDS.
/** * The table <code>RDB$RELATION_FIELDS</code>. */
public final Rdb$relationFields RDB$RELATION_FIELDS = Rdb$relationFields.RDB$RELATION_FIELDS;
The table RDB$RELATIONS.
/** * The table <code>RDB$RELATIONS</code>. */
public final Rdb$relations RDB$RELATIONS = Rdb$relations.RDB$RELATIONS;
The table RDB$TRIGGERS.
/** * The table <code>RDB$TRIGGERS</code>. */
public final Rdb$triggers RDB$TRIGGERS = Rdb$triggers.RDB$TRIGGERS;
No further instances allowed
/** * No further instances allowed */
private DefaultSchema() { super("", null); } @Override public Catalog getCatalog() { return DefaultCatalog.DEFAULT_CATALOG; } @Override public final List<Domain<?>> getDomains() { return Arrays.<Domain<?>>asList( Domains.RDB$PROCEDURE_PARAMETERS); } @Override public final List<Table<?>> getTables() { return Arrays.<Table<?>>asList( Rdb$checkConstraints.RDB$CHECK_CONSTRAINTS, Rdb$fields.RDB$FIELDS, Rdb$generators.RDB$GENERATORS, Rdb$indexSegments.RDB$INDEX_SEGMENTS, Rdb$indices.RDB$INDICES, Rdb$procedureParameters.RDB$PROCEDURE_PARAMETERS, Rdb$procedures.RDB$PROCEDURES, Rdb$refConstraints.RDB$REF_CONSTRAINTS, Rdb$relationConstraints.RDB$RELATION_CONSTRAINTS, Rdb$relationFields.RDB$RELATION_FIELDS, Rdb$relations.RDB$RELATIONS, Rdb$triggers.RDB$TRIGGERS); } }