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

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

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

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

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

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

    public static class Builder {
        Metric m;

        public Builder() {
            this.m = new Metric();
        }

        public Metric build() {
            return this.m;
        }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy