Here you can find the source of isContain(List
public static boolean isContain(List<Integer> list, Integer i)
//package com.java2s; //License from project: Apache License import java.util.Collection; import java.util.Collections; import java.util.List; public class Main { public static boolean isContain(List<Integer> list, Integer i) { return !isCollectionEmpty(list) && i != null && Collections.binarySearch(list, i) >= 0; }//w w w .j a v a 2 s. c o m public static <T> boolean isCollectionEmpty(Collection<T> collection) { return collection == null || collection.isEmpty(); } }