Here you can find the source of min(List
public static double min(List<Double> list)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static double min(List<Double> list) { Collections.sort(list);//from w w w . j a va 2 s. c o m return list.get(0); } }