> + }
> +
> + public static Builder builder() {
> + return new AutoValue_Network_IPAM_Config.Builder();
> + }
> +
> + @AutoValue.Builder
> + public abstract static class Builder {
> +
> + public abstract Builder subnet(String subnet);
> +
> + public abstract Builder ipRange(@Nullable String ipRange);
> +
> + public abstract Builder gateway(@Nullable String gateway);
> +
> + abstract Config autoBuild();
Hidden build methods are only needed when we want to enforce immutable
collections. If no collections are used in the builders, then just provide a
public abstract build() method.
---
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/296/files/8832f18cd39604cf1abc3419dbefa97d2783596c..83bf054085344f0ca477a57e872cd4ac242707d3#r70413431