sun.misc.ASCIICaseInsensitiveComparator appears to be a specialized comparator for comparing
strings that contain only ASCII characters. Its main usage seems to be in sorted maps that support the
character set implementation. It looks like an optimized version of Strings public case sensitive
comparator, when the strings are known to contain only ASCII characters. The public string case
insensitive comparator, in some cases, does a toUpperCase and a toLowerCase.
ASCIICaseInsensitiveComparator is trying to avoid this.
Looking at String.CASE_INSENSITIVE_ORDER it looks like it can be, somewhat easily, optimized to give
similar performance to that of ASCIICaseInsensitiveComparator without much risk. This will allow
usages of ASCIICaseInsensitiveComparator to be replaced with String.CASE_INSENSITIVE_ORDER.
Note: this issue is not intending to optimize String.CASE_INSENSITIVE_ORDER as much as possible,
just to make reasonable changes that improve performance to a point where it is a reasonable
replacement for ASCIICaseInsensitiveComparator. Further optimization should not be prevented,
or twarted, by this work.