/** * 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 Count1 extends AbstractRoutine<Long> { private static final long serialVersionUID = 1874146908; /** * The parameter <code>pg_catalog.count.RETURN_VALUE</code>. */ public static final Parameter<Long> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.BIGINT, false); /** * The parameter <code>pg_catalog.count._1</code>. */ public static final Parameter<Object> _1 = createParameter("_1", org.jooq.impl.SQLDataType.OTHER, false); /** * Create a new routine call instance */ public Count1() { super("count", PgCatalog.PG_CATALOG, org.jooq.impl.SQLDataType.BIGINT); setReturnParameter(RETURN_VALUE); addInParameter(_1); setOverloaded(true); } /** * Set the <code>_1</code> parameter IN value to the routine */ public void set__1(Object 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<Object> field) { setField(_1, field); } }