Regenerated code
This commit is contained in:
parent
d1c8460ada
commit
642d66701c
@ -0,0 +1,80 @@
|
||||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package org.jooq.example.jpa.jooq;
|
||||
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.Catalog;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.example.jpa.jooq.tables.Actor;
|
||||
import org.jooq.example.jpa.jooq.tables.Film;
|
||||
import org.jooq.example.jpa.jooq.tables.FilmActor;
|
||||
import org.jooq.example.jpa.jooq.tables.Language;
|
||||
import org.jooq.impl.SchemaImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class DefaultSchema extends SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = -567042889;
|
||||
|
||||
/**
|
||||
* The reference instance of <code></code>
|
||||
*/
|
||||
public static final DefaultSchema DEFAULT_SCHEMA = new DefaultSchema();
|
||||
|
||||
/**
|
||||
* The table <code>ACTOR</code>.
|
||||
*/
|
||||
public final Actor ACTOR = org.jooq.example.jpa.jooq.tables.Actor.ACTOR;
|
||||
|
||||
/**
|
||||
* The table <code>FILM</code>.
|
||||
*/
|
||||
public final Film FILM = org.jooq.example.jpa.jooq.tables.Film.FILM;
|
||||
|
||||
/**
|
||||
* The table <code>FILM_ACTOR</code>.
|
||||
*/
|
||||
public final FilmActor FILM_ACTOR = org.jooq.example.jpa.jooq.tables.FilmActor.FILM_ACTOR;
|
||||
|
||||
/**
|
||||
* The table <code>LANGUAGE</code>.
|
||||
*/
|
||||
public final Language LANGUAGE = org.jooq.example.jpa.jooq.tables.Language.LANGUAGE;
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private DefaultSchema() {
|
||||
super("", null);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Catalog getCatalog() {
|
||||
return DefaultCatalog.DEFAULT_CATALOG;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final List<Table<?>> getTables() {
|
||||
List result = new ArrayList();
|
||||
result.addAll(getTables0());
|
||||
return result;
|
||||
}
|
||||
|
||||
private final List<Table<?>> getTables0() {
|
||||
return Arrays.<Table<?>>asList(
|
||||
Actor.ACTOR,
|
||||
Film.FILM,
|
||||
FilmActor.FILM_ACTOR,
|
||||
Language.LANGUAGE);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user