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

keywhiz.jooq.DefaultCatalog Maven / Gradle / Ivy

The newest version!
/*
 * This file is generated by jOOQ.
 */
package keywhiz.jooq;


import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

import javax.annotation.processing.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.12.0"
    },
    comments = "This class is generated by jOOQ"
)
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class DefaultCatalog extends CatalogImpl {

    private static final long serialVersionUID = -1023567904;

    /**
     * The reference instance of 
     */
    public static final DefaultCatalog DEFAULT_CATALOG = new DefaultCatalog();

    /**
     * The schema keywhizdb_test.
     */
    public final KeywhizdbTest KEYWHIZDB_TEST = keywhiz.jooq.KeywhizdbTest.KEYWHIZDB_TEST;

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

    @Override
    public final List getSchemas() {
        List result = new ArrayList();
        result.addAll(getSchemas0());
        return result;
    }

    private final List getSchemas0() {
        return Arrays.asList(
            KeywhizdbTest.KEYWHIZDB_TEST);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy