> + public String value() {
> + return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN,
> name());
> + }
> +
> + @Override
> + public String toString() {
> + return value();
> + }
> +
> + /**
> + * This provides GSON enum support in jclouds.
> + * @param name The string representation of this enum value.
> + * @return The corresponding enum value.
> + */
> +
> + public static Status fromValue(String status) {
Is this going to handle a null or missing value as UNRECOGNIZED?
In any case, shouldn't really be an issue.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/188/files#r28097739