garydgregory commented on pull request #580: URL: https://github.com/apache/commons-lang/pull/580#issuecomment-655182482
I am not a fan of adding more and more "ignore case" versions of APIs. For 4.0, we could consider a new StringUtils class that has two default instances, one that is case-sensitive, the other not, which you would use like: ``` StringUtils.DEFAULT.theApiYouWant(...); // case-sensitive StringUtils.NAME_CASE_SENSITIVE.theApiYouWant(...); StringUtils.NAME_CASE_INSENSITIVE.theApiYouWant(...); ``` The alternative for now might be to override the existing API with a boolean or maybe an enum that says what kind of case-sensitivity you want. Any thoughts from the community? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
