Java tutorial
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static boolean containsInstance(Collection collection, Object element) { if (collection != null) { Iterator it = collection.iterator(); while (it.hasNext()) { Object candidate = it.next(); if (candidate == element) { return true; } } } return false; } }