/** * This class is generated by jOOQ */ package org.jooq.example.chart.db.routines; import javax.annotation.Generated; import org.jooq.Field; import org.jooq.Parameter; import org.jooq.example.chart.db.Public; import org.jooq.impl.AbstractRoutine; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.8.0", "schema version:public_2", }, date = "2016-06-30T15:44:15.143Z", comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class _GroupConcat extends AbstractRoutine<String> { private static final long serialVersionUID = -355443169; /** * The parameter <code>public._group_concat.RETURN_VALUE</code>. */ public static final Parameter<String> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.CLOB, false, false); /** * The parameter <code>public._group_concat._1</code>. */ public static final Parameter<String> _1 = createParameter("_1", org.jooq.impl.SQLDataType.CLOB, false, true); /** * The parameter <code>public._group_concat._2</code>. */ public static final Parameter<String> _2 = createParameter("_2", org.jooq.impl.SQLDataType.CLOB, false, true); /** * Create a new routine call instance */ public _GroupConcat() { super("_group_concat", Public.PUBLIC, 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(String 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<String> field) { setField(_1, field); } /** * Set the <code>_2</code> parameter IN value to the routine */ public void set__2(String 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<String> field) { setField(_2, field); } }