/** * This class is generated by jOOQ */ package classes.routines; import classes.Public; import javax.annotation.Generated; import org.jooq.Field; import org.jooq.Parameter; import org.jooq.impl.AbstractRoutine; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.8.6" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class Test extends AbstractRoutine { private static final long serialVersionUID = 1094711563; /** * The parameter public.test.RETURN_VALUE. */ public static final Parameter RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.test.one. */ public static final Parameter ONE = createParameter("one", org.jooq.impl.SQLDataType.CLOB, false, false); /** * Create a new routine call instance */ public Test() { super("test", Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER); setReturnParameter(RETURN_VALUE); addInParameter(ONE); } /** * Set the one parameter IN value to the routine */ public void setOne(String value) { setValue(ONE, value); } /** * Set the one parameter to the function to be used with a {@link org.jooq.Select} statement */ public void setOne(Field field) { setField(ONE, field); } }