> + * limitations under the License.
> + */
> +package org.jclouds.glacier.domain;
> +
> +import java.util.Map;
> +
> +import com.google.common.collect.ImmutableMap;
> +
> +public enum JobStatus {
> + SUCCEEDED("Succeeded"),
> + FAILED("Failed"),
> + IN_PROGRESS("InProgress");
> +
> + private final String value;
> +
> + private static final Map<String, JobStatus> stringToEnum =
> ImmutableMap.of("Succeeded", SUCCEEDED,
Rename to `STRING_TO_ENUM` since this is a constant?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/38/files#r14964324