All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.meta.firebird.rdb.DefaultSchema Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
/*
 * This file is generated by jOOQ.
 */
package org.jooq.meta.firebird.rdb;


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

import org.jooq.Catalog;
import org.jooq.Table;
import org.jooq.impl.SchemaImpl;
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$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;


/**
 * This class is generated by jOOQ.
 */
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class DefaultSchema extends SchemaImpl {

    private static final long serialVersionUID = 451583036;

    /**
     * The reference instance of 
     */
    public static final DefaultSchema DEFAULT_SCHEMA = new DefaultSchema();

    /**
     * The table RDB$FIELDS.
     */
    public final Rdb$fields RDB$FIELDS = org.jooq.meta.firebird.rdb.tables.Rdb$fields.RDB$FIELDS;

    /**
     * The table RDB$GENERATORS.
     */
    public final Rdb$generators RDB$GENERATORS = org.jooq.meta.firebird.rdb.tables.Rdb$generators.RDB$GENERATORS;

    /**
     * The table RDB$INDEX_SEGMENTS.
     */
    public final Rdb$indexSegments RDB$INDEX_SEGMENTS = org.jooq.meta.firebird.rdb.tables.Rdb$indexSegments.RDB$INDEX_SEGMENTS;

    /**
     * The table RDB$PROCEDURES.
     */
    public final Rdb$procedures RDB$PROCEDURES = org.jooq.meta.firebird.rdb.tables.Rdb$procedures.RDB$PROCEDURES;

    /**
     * The table RDB$PROCEDURE_PARAMETERS.
     */
    public final Rdb$procedureParameters RDB$PROCEDURE_PARAMETERS = org.jooq.meta.firebird.rdb.tables.Rdb$procedureParameters.RDB$PROCEDURE_PARAMETERS;

    /**
     * The table RDB$REF_CONSTRAINTS.
     */
    public final Rdb$refConstraints RDB$REF_CONSTRAINTS = org.jooq.meta.firebird.rdb.tables.Rdb$refConstraints.RDB$REF_CONSTRAINTS;

    /**
     * The table RDB$RELATIONS.
     */
    public final Rdb$relations RDB$RELATIONS = org.jooq.meta.firebird.rdb.tables.Rdb$relations.RDB$RELATIONS;

    /**
     * The table RDB$RELATION_CONSTRAINTS.
     */
    public final Rdb$relationConstraints RDB$RELATION_CONSTRAINTS = org.jooq.meta.firebird.rdb.tables.Rdb$relationConstraints.RDB$RELATION_CONSTRAINTS;

    /**
     * The table RDB$RELATION_FIELDS.
     */
    public final Rdb$relationFields RDB$RELATION_FIELDS = org.jooq.meta.firebird.rdb.tables.Rdb$relationFields.RDB$RELATION_FIELDS;

    /**
     * No further instances allowed
     */
    private DefaultSchema() {
        super("", null);
    }


    /**
     * {@inheritDoc}
     */
    @Override
    public Catalog getCatalog() {
        return DefaultCatalog.DEFAULT_CATALOG;
    }

    @Override
    public final List> getTables() {
        List result = new ArrayList();
        result.addAll(getTables0());
        return result;
    }

    private final List> getTables0() {
        return Arrays.>asList(
            Rdb$fields.RDB$FIELDS,
            Rdb$generators.RDB$GENERATORS,
            Rdb$indexSegments.RDB$INDEX_SEGMENTS,
            Rdb$procedures.RDB$PROCEDURES,
            Rdb$procedureParameters.RDB$PROCEDURE_PARAMETERS,
            Rdb$refConstraints.RDB$REF_CONSTRAINTS,
            Rdb$relations.RDB$RELATIONS,
            Rdb$relationConstraints.RDB$RELATION_CONSTRAINTS,
            Rdb$relationFields.RDB$RELATION_FIELDS);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy