Here you can find the source of max(Collection
public static Double max(Collection<Double> values)
//package com.java2s; //License from project: Open Source License import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.List; public class Main { public static Double max(Collection<Double> values) { List<Double> filteredValues = filterNulls(values); if (filteredValues.size() == 0) return null; return Collections.max(filteredValues); }/*from w w w . ja v a 2s. c o m*/ private static List<Double> filterNulls(Collection<Double> values) { List<Double> result = new ArrayList<>(); for (Double value : values) { if (value != null) result.add(value); } return result; } }