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

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

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

import java.util.List;

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

    public Integer getStart() {
        return Utils.asInteger(this.get("start"));
    }

    public Integer getEnd() {
        return Utils.asInteger(this.get("end"));
    }

    public List getExperiments() {
        return (List) this.get("experiments");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy