static void addPairIfBAtLeast(Collection> c, A a, B b, Number threshold) { if (c != null && cmp(b, threshold) >= 0) c.add(pair(a, b)); }