> + public static Builder builder() {
> + return new Builder();
> + }
> +
> + @Override
> + protected Object clone() throws CloneNotSupportedException {
> + UserOptions options = new UserOptions();
> + options.queryParameters.putAll(queryParameters);
> + return options;
> + }
> +
> + public static class Builder extends BaseFilterOptionsBuilder<Builder> {
> +
> + private Integer page;
> +
> + public Builder page(Integer page) {
If it does not make sense to pass a `null` value to the builder, would it be
worth changing the parameter type to a primitive `int`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/22/files#r5705700