public static <T> Collector<T,?,Double> averagingInt(ToIntFunction<? super T> mapper)
Returns a Collector that produces the arithmetic mean of an integer-valued function applied to the input elements. If no elements are present, the result is 0.
Examples
The method Collectors#averagingInt converts each stream elements to int per user provided mapper function and returns the arithmetic mean of those integers.
public class AveragingIntExample { public static void main (String[] args) { Stream<BigDecimal> s = Stream.iterate( BigDecimal.ONE, bigDecimal -> bigDecimal.add(BigDecimal.ONE)) .limit(10).peek(System.out::println);
Double d = s.collect(Collectors.averagingInt(BigDecimal::intValue)); System.out.println("average: " + d); } }