org.jooq.meta.firebird.rdb.DefaultSchema Maven / Gradle / Ivy
/*
* 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$functionArguments;
import org.jooq.meta.firebird.rdb.tables.Rdb$functions;
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.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class DefaultSchema extends SchemaImpl {
private static final long serialVersionUID = 1L;
/**
* The reference instance of DEFAULT_SCHEMA
*/
public static final DefaultSchema DEFAULT_SCHEMA = new DefaultSchema();
/**
* The table RDB$CHECK_CONSTRAINTS
.
*/
public final Rdb$checkConstraints RDB$CHECK_CONSTRAINTS = Rdb$checkConstraints.RDB$CHECK_CONSTRAINTS;
/**
* The table RDB$FIELDS
.
*/
public final Rdb$fields RDB$FIELDS = Rdb$fields.RDB$FIELDS;
/**
* The table RDB$FUNCTION_ARGUMENTS
.
*/
public final Rdb$functionArguments RDB$FUNCTION_ARGUMENTS = Rdb$functionArguments.RDB$FUNCTION_ARGUMENTS;
/**
* The table RDB$FUNCTIONS
.
*/
public final Rdb$functions RDB$FUNCTIONS = Rdb$functions.RDB$FUNCTIONS;
/**
* The table RDB$GENERATORS
.
*/
public final Rdb$generators RDB$GENERATORS = Rdb$generators.RDB$GENERATORS;
/**
* The table RDB$INDEX_SEGMENTS
.
*/
public final Rdb$indexSegments RDB$INDEX_SEGMENTS = Rdb$indexSegments.RDB$INDEX_SEGMENTS;
/**
* The table RDB$INDICES
.
*/
public final Rdb$indices RDB$INDICES = Rdb$indices.RDB$INDICES;
/**
* The table RDB$PROCEDURE_PARAMETERS
.
*/
public final Rdb$procedureParameters RDB$PROCEDURE_PARAMETERS = Rdb$procedureParameters.RDB$PROCEDURE_PARAMETERS;
/**
* The table RDB$PROCEDURES
.
*/
public final Rdb$procedures RDB$PROCEDURES = Rdb$procedures.RDB$PROCEDURES;
/**
* The table RDB$REF_CONSTRAINTS
.
*/
public final Rdb$refConstraints RDB$REF_CONSTRAINTS = Rdb$refConstraints.RDB$REF_CONSTRAINTS;
/**
* The table RDB$RELATION_CONSTRAINTS
.
*/
public final Rdb$relationConstraints RDB$RELATION_CONSTRAINTS = Rdb$relationConstraints.RDB$RELATION_CONSTRAINTS;
/**
* The table RDB$RELATION_FIELDS
.
*/
public final Rdb$relationFields RDB$RELATION_FIELDS = Rdb$relationFields.RDB$RELATION_FIELDS;
/**
* The table RDB$RELATIONS
.
*/
public final Rdb$relations RDB$RELATIONS = Rdb$relations.RDB$RELATIONS;
/**
* The table RDB$TRIGGERS
.
*/
public final Rdb$triggers RDB$TRIGGERS = Rdb$triggers.RDB$TRIGGERS;
/**
* No further instances allowed
*/
private DefaultSchema() {
super("", null);
}
@Override
public Catalog getCatalog() {
return DefaultCatalog.DEFAULT_CATALOG;
}
@Override
public final List> getDomains() {
return Arrays.asList(
Domains.RDB$PROCEDURE_PARAMETERS
);
}
@Override
public final List> getTables() {
return Arrays.asList(
Rdb$checkConstraints.RDB$CHECK_CONSTRAINTS,
Rdb$fields.RDB$FIELDS,
Rdb$functionArguments.RDB$FUNCTION_ARGUMENTS,
Rdb$functions.RDB$FUNCTIONS,
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
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy