Tagged Questions
10
votes
6answers
736 views
What are the pros and cons of having a CaseInsensitiveString type in Java?
I'm tempted to create a final class CaseInsensitiveString implements CharSequence.
This would allow us to define variables and fields of this type, instead of using a regular String. We can also have ...