Here you can find the source of countNumber(List
public static int countNumber(List<Integer> list, int number)
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static int countNumber(List<Integer> list, int number) { int occurrences = Collections.frequency(list, number); return occurrences; }//from w w w . ja va2 s .c o m }