Here you can find the source of sum(List
public static Integer sum(List<Integer> numbers)
//package com.java2s; //License from project: Apache License import java.util.List; public class Main { public static Integer sum(List<Integer> numbers) { return numbers.stream().mapToInt(Integer::intValue).sum(); }/*from w ww. j av a2 s. c o m*/ }