> + private final String id; > + > + Location(String id) { > + this.id = id; > + } > + > + public String value() { > + return id; > + } > + > + public static Location fromValue(String v) { > + try { > + return valueOf(v); > + } catch (IllegalArgumentException ex) { > + return UNRECOGNIZED; > + }
Same here. Use a consistent approach in all enums. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/225/files#r48140732