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

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

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

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

    public CategoricalValue(String name) {
        super();
        this.set("name", name);
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy