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

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

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

public class Metadata extends RichMapObject {
    public Metadata() {
        super();
    }

    public static class Builder {
        Metadata m;

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy