static A firstOfType(Collection c, Class type) { for (O x : c) if (isInstanceX(type, x)) ret (A) x; ret null; }