Şöyle bir kod parçacığıyla liste içinde min ve max değerleri de bulabilirsiniz. Belki işinize yarar.

Integer[] array = new Integer[]{44,-13,6,-12,66,132,5,-5,4,0,16};

List<Integer> list = Arrays.asList(array);

Integer maxValue = list.stream().mapToInt(a -> a).max().getAsInt();
Integer minValue = list.stream().mapToInt(a -> a).min().getAsInt();