> + * @return The string value.
> + */
> + public String value() {
> + return name();
> + }
> +
> + @Override
> + public String toString() {
> + return value();
> + }
> +
> + /**
> + * @param status The string representation of a Status
> + * @return The corresponding Status.
> + */
> + public static Status fromValue(String status) {
Specifically, it is needed for EnumTypeAdapterThatReturnsFromValue which is the
custom jclouds enum adapter. If the enum string cannot be parsed automatically,
fromValue is called.
I am not sure if I am explaining this well...
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/78/files#r9683492