All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sigopt.model.Assignments Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.sigopt.model;

public class Assignments extends MapObject {
    public Assignments() {
        super();
    }

    public static class Builder {
        Assignments a;

        public Builder() {
            this.a = new Assignments();
        }

        public Assignments build() {
            return this.a;
        }

        public Builder set(String key, String value) {
            this.a.set(key, value);
            return this;
        }

        public Builder set(String key, Integer value) {
            this.a.set(key, value);
            return this;
        }

        public Builder set(String key, Double value) {
            this.a.set(key, value);
            return this;
        }
    }
}