Java List Max max(List a)

Here you can find the source of max(List a)

Description

max

License

Open Source License

Declaration

public static double max(List<Double> a) 

Method Source Code


//package com.java2s;
// under certain conditions; for more information please see LICENSE.txt

import java.util.*;

public class Main {
    public static double max(List<Double> a) {
        return Collections.max(a);
    }/*from   w  ww.ja  va 2s.c  o m*/
}

Related

  1. getMaxValue(List values)
  2. max(final List aList, final Double aDefalut)
  3. max(List values)
  4. max(List a, List b)
  5. max(List booleans)
  6. max(List data)
  7. max(List l)
  8. max(List liste)
  9. max(List list, int maximumSize)