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

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

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

import java.util.List;

public class Conditions extends MapObject> {
    public Conditions() {
        super();
    }

    public static class Builder {
        Conditions c;

        public Builder() {
            this.c = new Conditions();
        }

        public Conditions build() {
            return this.c;
        }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy