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

com.spotinst.sdkjava.model.ApiPredictiveScale Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;

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

/**
 * Created by SagiShoshan on 11/05/2021.
 */
public class ApiPredictiveScale {
    //region Members
    @JsonIgnore
    private Set isSet = new HashSet<>();
    private String      mode;
    //endregion

    //region Getter and Setter methods
    public String getMode() {
        return mode;
    }

    public void setMode(String mode) {
        isSet.add("mode");
        this.mode = mode;
    }

    // Is Mode Set boolean method
    @JsonIgnore
    public boolean isModeSet() {
        return isSet.contains("mode");
    }
    //endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy