Here you can find the source of indexOfMax(List list)
public static int indexOfMax(List list)
//package com.java2s; //License from project: Apache License import java.util.Collections; import java.util.List; public class Main { public static int indexOfMax(List list) { return list.indexOf(Collections.max(list)); }//from w w w . ja v a2 s . co m }