All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.scala.example.h2.Public Maven / Gradle / Ivy

/**
 * This class is generated by jOOQ
 */
package org.jooq.scala.example.h2;

/**
 * This class is generated by jOOQ.
 */
@javax.annotation.Generated(value    = { "http://www.jooq.org", "3.1.0" },
                            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 = 407010792;

	/**
	 * The singleton instance of PUBLIC
	 */
	public static final Public PUBLIC = new Public();

	/**
	 * No further instances allowed
	 */
	private Public() {
		super("PUBLIC");
	}

	@Override
	public final java.util.List> getSequences() {
		java.util.List result = new java.util.ArrayList();
		result.addAll(getSequences0());
		return result;
	}

	private final java.util.List> getSequences0() {
		return java.util.Arrays.>asList(
			org.jooq.scala.example.h2.Sequences.S_AUTHOR_ID);
	}

	@Override
	public final java.util.List> getTables() {
		java.util.List result = new java.util.ArrayList();
		result.addAll(getTables0());
		return result;
	}

	private final java.util.List> getTables0() {
		return java.util.Arrays.>asList(
			org.jooq.scala.example.h2.tables.TAuthor.T_AUTHOR,
			org.jooq.scala.example.h2.tables.TBook.T_BOOK);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy