Here you can find the source of sum(Collection
public static int sum(Collection<Integer> values)
//package com.java2s; import java.util.Collection; public class Main { public static int sum(Collection<Integer> values) { int sum = 0; for (Integer i : values) { sum = sum + i;/*from w w w .j ava2s .com*/ } return sum; } }