> + */
> + UNRECOGNIZED("unrecognized");
> +
> + private String name;
> +
> + private RuleDirection(String name) {
> + this.name = name;
> + }
> +
> + public String toString() {
> + return name;
> + }
> +
> + /**
> + * This provides GSON enum support in jclouds.
> + * */
[minor] Make this an internal comment, since it really describes the
implementation need rather then the functionality?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/132/files#r16929821