/** * This class is generated by jOOQ */ package org.jooq.util.postgres.pg_catalog.routines; import javax.annotation.Generated; import org.jooq.Field; import org.jooq.Parameter; import org.jooq.impl.AbstractRoutine; import org.jooq.util.postgres.pg_catalog.PgCatalog; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.8.0" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class FormatType extends AbstractRoutine<String> { private static final long serialVersionUID = -626180672; /** * The parameter <code>pg_catalog.format_type.RETURN_VALUE</code>. */ public static final Parameter<String> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.CLOB, false); /** * The parameter <code>pg_catalog.format_type._1</code>. */ public static final Parameter<Long> _1 = createParameter("_1", org.jooq.impl.SQLDataType.BIGINT, false); /** * The parameter <code>pg_catalog.format_type._2</code>. */ public static final Parameter<Integer> _2 = createParameter("_2", org.jooq.impl.SQLDataType.INTEGER, false); /** * Create a new routine call instance */ public FormatType() { super("format_type", PgCatalog.PG_CATALOG, org.jooq.impl.SQLDataType.CLOB); setReturnParameter(RETURN_VALUE); addInParameter(_1); addInParameter(_2); } /** * Set the <code>_1</code> parameter IN value to the routine */ public void set__1(Long value) { setValue(_1, value); } /** * Set the <code>_1</code> parameter to the function to be used with a {@link org.jooq.Select} statement */ public void set__1(Field<Long> field) { setField(_1, field); } /** * Set the <code>_2</code> parameter IN value to the routine */ public void set__2(Integer value) { setValue(_2, value); } /** * Set the <code>_2</code> parameter to the function to be used with a {@link org.jooq.Select} statement */ public void set__2(Field<Integer> field) { setField(_2, field); } }