$criteria = new Criteria(flavorParamsConversionProfilePeer::DATABASE_NAME);
        $criteria->add(flavorParamsConversionProfilePeer::ID, $pk);
        $v = flavorParamsConversionProfilePeer::doSelect($criteria, $con);
        return !empty($v) > 0 ? $v[0] : null;
    }
    /**
     * Retrieve multiple objects by pkey.
     *
     * @param      array $pks List of primary keys
     * @param      PropelPDO $con the connection to use
     * @throws     PropelException Any exceptions caught during processing will be
     *		 rethrown wrapped into a PropelException.
     */
    public static function retrieveByPKs($pks, PropelPDO $con = null)
    {
        $objs = null;
        if (empty($pks)) {
            $objs = array();
        } else {
            $criteria = new Criteria(flavorParamsConversionProfilePeer::DATABASE_NAME);
            $criteria->add(flavorParamsConversionProfilePeer::ID, $pks, Criteria::IN);
            $objs = flavorParamsConversionProfilePeer::doSelect($criteria, $con);
        }
        return $objs;
    }
}
// BaseflavorParamsConversionProfilePeer
// This is the static code needed to register the TableMap for this table with the main Propel class.
//
BaseflavorParamsConversionProfilePeer::buildTableMap();