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

fr.ght1pc9kc.testy.dsl.public_.Public Maven / Gradle / Ivy

The newest version!
/*
 * This file is generated by jOOQ.
 */
package fr.ght1pc9kc.testy.dsl.public_;


import fr.ght1pc9kc.testy.dsl.DefaultCatalog;
import fr.ght1pc9kc.testy.dsl.public_.tables.Jedi;
import fr.ght1pc9kc.testy.dsl.public_.tables.LightSaber;

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

import javax.annotation.processing.Generated;

import org.jooq.Catalog;
import org.jooq.Table;
import org.jooq.impl.SchemaImpl;


/**
 * This class is generated by jOOQ.
 */
@Generated(
    value = {
        "https://www.jooq.org",
        "jOOQ version:3.18.7"
    },
    comments = "This class is generated by jOOQ"
)
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Public extends SchemaImpl {

    private static final long serialVersionUID = 1L;

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

    /**
     * The table PUBLIC.JEDI.
     */
    public final Jedi JEDI = Jedi.JEDI;

    /**
     * The table PUBLIC.LIGHT_SABER.
     */
    public final LightSaber LIGHT_SABER = LightSaber.LIGHT_SABER;

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


    @Override
    public Catalog getCatalog() {
        return DefaultCatalog.DEFAULT_CATALOG;
    }

    @Override
    public final List> getTables() {
        return Arrays.asList(
            Jedi.JEDI,
            LightSaber.LIGHT_SABER
        );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy