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
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