カスタム リストで addAll() メソッドを使用しようとしています。次の Java コードがあります。
PaginatedResponse<CustomType> paginatedResponse = new PaginatedResponse<CustomType>();
List<PaginatedResponse<CustomType>> paginatedResponseList = new ArrayList<PaginatedResponse<CustomType>>();
paginatedResponseList.addAll(methodReturningPaginatedResponseOfCustomType);
しかし、私はエラーが発生しています。addAll() に適したメソッドが見つかりません
ここで何が間違っていますか?