> +        IMAGES("IMAGES"), MY_IMAGE("MY_IMAGE"), PERSONAL("PERSONAL"), 
> UNRECOGNIZED("");
> +
> +        public static ImageType fromValue(String v) {
> +            return Enums.getIfPresent(ImageType.class, v).or(UNRECOGNIZED);
> +        }
> +        // the value which is used for matching
> +        // the json node value with this enum
> +        private final String value;
> +
> +        ImageType(final String type) {
> +            value = type;
> +        }
> +
> +        @Override
> +        public String toString() {
> +            return value;

Same comment than above.

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/275/files/0767d011a984011133c9e34b3389b449ca0756cd#r68668065

Reply via email to