static A findWhere(Collection c, O... data) { if (c != null) for (A x : c) if (checkFields(x, data)) ret x; ret null; }