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

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

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

import java.util.List;

public class Conditional extends StructObject {
    public Conditional() {
        super();
    }

    public String getName() {
        return (String) this.get("name");
    }

    public List getValues() {
        return (List) this.get("values");
    }

    public static class Builder extends APIObjectBuilder {
        public Builder() {
            this.obj = new Conditional();
        }

        public Builder name(String name) {
            this.obj.set("name", name);
            return this;
        }

        public Builder values(List values) {
            this.obj.set("values", values);
            return this;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy