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 <garydgreg...@gmail.com> wrote:
> 
> 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 String source, final Locale
> locale) {
>            return source.toUpperCase(locale);
>        }
>    };
> 
>    public abstract String toCaseString(String source, Locale locale);
> }
> 
> ?
> 
> Gary

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to