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