> }
>
> public enum ObjectRole {
> READER, OWNER
> }
>
> + public enum Location {
> + ASIA, EU, US, ASIA_EAST1, US_CENTRAL1, US_CENTRAL2, US_EAST1,
> US_EAST2, US_EAST3, US_WEST1;
> +
> + public String value() {
> + return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN,
> name()).toUpperCase();
Just to ensure I'm understanding this...we go from A_B to a-b and then A-B
again? In that case, how about just replacing '_' with '-'?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14528452