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

com.spotinst.sdkjava.model.bl.elastigroup.aws.ElastigroupDeploymentProgress Maven / Gradle / Ivy

There is a newer version: 1.0.121
Show newest version
package com.spotinst.sdkjava.model.bl.elastigroup.aws;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;

import java.util.HashSet;
import java.util.Set;

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ElastigroupDeploymentProgress {

    @JsonIgnore
    private Set isSet;
    private String      unit;
    private Integer     value;

    public ElastigroupDeploymentProgress() {
        isSet = new HashSet<>();
    }

    public Set getIsSet() {
        return isSet;
    }

    public void setIsSet(Set isSet) {
        this.isSet = isSet;
    }

    public String getUnit() {
        return unit;
    }

    public void setUnit(String unit) {
        isSet.add("unit");
        this.unit = unit;
    }

    public Integer getValue() {
        return value;
    }

    public void setValue(Integer value) {
        isSet.add("value");
        this.value = value;
    }

    public static class Builder {
        private ElastigroupDeploymentProgress elastigroupProgress;

        private Builder() {
            this.elastigroupProgress = new ElastigroupDeploymentProgress();
        }

        public static Builder get() {
            return new Builder();
        }

        public Builder setUnit(final String unit) {
            elastigroupProgress.setUnit(unit);
            return this;
        }

        public Builder setValue(final Integer value) {
            elastigroupProgress.setValue(value);
            return this;
        }

        public ElastigroupDeploymentProgress build() {
            return elastigroupProgress;
        }

    }


    @JsonIgnore
    public boolean isUnitSet() {
        return isSet.contains("unit");
    }

    @JsonIgnore
    public boolean isValueSet() {
        return isSet.contains("value");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy