static boolean nempty(Collection c) { ret !isEmpty(c); } static boolean nempty(CharSequence s) { ret !isEmpty(s); } static boolean nempty(O[] o) { ret !isEmpty(o); } static boolean nempty(Map m) { ret !isEmpty(m); } static boolean nempty(Iterator i) { ret i != null && i.hasNext(); }