![JAR search and dependency download from the Maven repository](/logo.png)
net.redpipe.example.wiki.keycloakJooq.jooq.Public Maven / Gradle / Ivy
/*
* This file is generated by jOOQ.
*/
package net.redpipe.example.wiki.keycloakJooq.jooq;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import javax.annotation.Generated;
import org.jooq.Catalog;
import org.jooq.Sequence;
import org.jooq.Table;
import org.jooq.impl.SchemaImpl;
import net.redpipe.example.wiki.keycloakJooq.jooq.tables.Pages;
/**
* This class is generated by jOOQ.
*/
@Generated(
value = {
"http://www.jooq.org",
"jOOQ version:3.9.2"
},
comments = "This class is generated by jOOQ"
)
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Public extends SchemaImpl {
private static final long serialVersionUID = 2050228780;
/**
* The reference instance of public
*/
public static final Public PUBLIC = new Public();
/**
* The table public.pages
.
*/
public final Pages PAGES = net.redpipe.example.wiki.keycloakJooq.jooq.tables.Pages.PAGES;
/**
* No further instances allowed
*/
private Public() {
super("public", null);
}
/**
* {@inheritDoc}
*/
@Override
public Catalog getCatalog() {
return DefaultCatalog.DEFAULT_CATALOG;
}
@Override
public final List> getSequences() {
List result = new ArrayList();
result.addAll(getSequences0());
return result;
}
private final List> getSequences0() {
return Arrays.>asList(
Sequences.PAGES_ID_SEQ);
}
@Override
public final List> getTables() {
List result = new ArrayList();
result.addAll(getTables0());
return result;
}
private final List> getTables0() {
return Arrays.>asList(
Pages.PAGES);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy