/** * This class is generated by jOOQ */ package org.jooq.groovy.example.h2; /** * This class is generated by jOOQ. */ @javax.annotation.Generated(value = { "http://www.jooq.org", "3.2.1" }, comments = "This class is generated by jOOQ") @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class Public extends org.jooq.impl.SchemaImpl { private static final long serialVersionUID = 2038761574; /** * The singleton instance of <code>PUBLIC</code> */ public static final Public PUBLIC = new Public(); /** * No further instances allowed */ private Public() { super("PUBLIC"); } @Override public final java.util.List<org.jooq.Sequence<?>> getSequences() { java.util.List result = new java.util.ArrayList(); result.addAll(getSequences0()); return result; } private final java.util.List<org.jooq.Sequence<?>> getSequences0() { return java.util.Arrays.<org.jooq.Sequence<?>>asList( org.jooq.groovy.example.h2.Sequences.S_AUTHOR_ID); } @Override public final java.util.List<org.jooq.Table<?>> getTables() { java.util.List result = new java.util.ArrayList(); result.addAll(getTables0()); return result; } private final java.util.List<org.jooq.Table<?>> getTables0() { return java.util.Arrays.<org.jooq.Table<?>>asList( org.jooq.groovy.example.h2.tables.TAuthor.T_AUTHOR, org.jooq.groovy.example.h2.tables.TBook.T_BOOK); } }