Re: [lang][text] New case conversion util

2017-12-12 Thread Rob Tompkins
I don’t understand the use case. It feels like a contrivance without that clear understanding. That said, given sufficient documentation it could go in either based upon who you think would be using it most. -Rob > On Dec 11, 2017, at 5:28 PM, Gary Gregory wrote: > > Too weird for lang or te

[lang][text] New case conversion util

2017-12-11 Thread Gary Gregory
Too weird for lang or text: public enum LetterCase { LOWER { @Override public String toCaseString(final String source, final Locale locale) { return source.toLowerCase(locale); } }, UPPER { @Override public String toCaseString(final