> + "Failed", FAILED, "InProgress", IN_PROGRESS);
> +
> + public static JobStatus fromString(String symbol) {
> + return stringToEnum.get(symbol);
> + }
> +
> + public String getValue() {
> + return this.value;
> + }
> +
> + public String toString() {
> + return this.value;
> + }
> +
> + JobStatus(String value) {
> + this.value = value;
Do you need to store value at all if you use `CaseFormat`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/38/files#r14963958