static int compareIgnoreCase(S a, S b) { ret a == null ? (b == null ? 0 : -1) : b == null ? 1 : a.compareToIgnoreCase(b); }