/** * This class is generated by jOOQ */ package org.jooq.util.mysql.mysql.enums; import javax.annotation.Generated; import org.jooq.Catalog; import org.jooq.EnumType; import org.jooq.Schema; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.9.0" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public enum ProcSecurityType implements EnumType { INVOKER("INVOKER"), DEFINER("DEFINER"); private final String literal; private ProcSecurityType(String literal) { this.literal = literal; } /** * {@inheritDoc} */ @Override public Catalog getCatalog() { return null; } /** * {@inheritDoc} */ @Override public Schema getSchema() { return null; } /** * {@inheritDoc} */ @Override public String getName() { return "proc_security_type"; } /** * {@inheritDoc} */ @Override public String getLiteral() { return literal; } }