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

com.spotinst.sdkjava.model.bl.azure.elastiGroup.V3.Deployment.DeploymentDetails.DeploymentDetailsBatchAzure Maven / Gradle / Ivy

There is a newer version: 1.0.121
Show newest version
package com.spotinst.sdkjava.model.bl.azure.elastiGroup.V3.Deployment.DeploymentDetails;

import com.fasterxml.jackson.annotation.JsonIgnore;

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

public class DeploymentDetailsBatchAzure {
    //region members
    @JsonIgnore
    private Set                                isSet;
    private Integer                                    batch;
    private List blue;
    private List green;
    //endregion

    //region constructor
    public DeploymentDetailsBatchAzure() {
        isSet = new HashSet<>();
    }
    //endregion

    //region getters & setters

    public Set getIsSet() {
        return isSet;
    }

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

    public Integer getBatch() {
        return batch;
    }

    public void setBatch(Integer batch) {
        this.batch = batch;
        touch("batch");
    }

    public List getBlue() {
        return blue;
    }

    public void setBlue(List blue) {
        this.blue = blue;
        touch("blue");
    }

    public List getGreen() {
        return green;
    }

    public void setGreen(List green) {
        this.green = green;
        touch("green");
    }
    //endregion

    //region isSet boolean methods
    @JsonIgnore
    public Boolean isBatchSet() {
        return this.isSet.contains("batch");
    }
    @JsonIgnore
    public Boolean isBlueSet() {
        return this.isSet.contains("blue");
    }
    @JsonIgnore
    public Boolean isGreenSet() {
        return this.isSet.contains("green");
    }
    //endregion

    //region private methods - touch helper
    private void touch(String fieldName) {
        this.isSet.add(fieldName);
    }
    //endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy