No, there isn’t . But if you explain what you’re trying to do, we can probably suggest an alternative approach that would do what you need. To perform case-insensitive matching in Java, you can use String.
Read moreHow do you negate a stream filter in java?
How to negate a method reference predicate
Read moreIs set contains case sensitive in Java?
contains() method of Collection interface returns true if this set contains the specified element. But the problem is contains() method only check the equality of element (case sensitive).14 Tem 2019
Read moreIs Java input case sensitive?
Java, like most programming languages, is case sensitive . Even the slightest difference in naming indicates different objects (count does not equal Count). In order to be consistent, programmers follow naming conventions. For example, variables are lowercase (car) and classes are uppercase (Car).
Read moreIs set contains case sensitive?
Yes. Collection membership is case sensitive. This applies to Sets: If the set contains String elements, the elements are case-sensitive .
Read moreHow do you make a case insensitive in Java?
Java String equalsIgnoreCase() Method The equalsIgnoreCase() method compares two strings, ignoring lower case and upper case differences. This method returns true if the strings are equal, and false if not. Tip: Use the compareToIgnoreCase() method to compare two strings lexicographically, ignoring case differences.
Read more