/** * This class is generated by jOOQ */ package org.jooq.example.chart.db; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import javax.annotation.Generated; import org.jooq.Schema; import org.jooq.impl.CatalogImpl; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.9.0", }, date = "2016-07-21T14:59:42.657Z", comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class DefaultCatalog extends CatalogImpl { private static final long serialVersionUID = 1092206286; /** * The reference instance of <code></code> */ public static final DefaultCatalog DEFAULT_CATALOG = new DefaultCatalog(); /** * The schema <code>public</code>. */ public final Public PUBLIC = org.jooq.example.chart.db.Public.PUBLIC; /** * No further instances allowed */ private DefaultCatalog() { super(""); } @Override public final List<Schema> getSchemas() { List result = new ArrayList(); result.addAll(getSchemas0()); return result; } private final List<Schema> getSchemas0() { return Arrays.<Schema>asList( Public.PUBLIC); } }