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

com.spotinst.sdkjava.model.bl.elastigroup.aws.CpuOptions 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;

/**
 * @author: Anurag Sharma
 * @since: 14/08/2023
 */
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class CpuOptions {
    //region Members
    @JsonIgnore
    private Set                                    isSet;
    private Integer                               threadsPerCore;
    //endregion

    //region Constructor

    public CpuOptions() {
        isSet = new HashSet<>();
    }
    //endregion

    //region Getters & Setters

    public Set getIsSet() {
        return isSet;
    }

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

    public Integer getThreadsPerCore() {
        return threadsPerCore;
    }

    public void setThreadsPerCore(Integer threadsPerCore) {
        isSet.add("threadsPerCore");
        this.threadsPerCore = threadsPerCore;
    }

    //endregion

    //region Builder class
    public static class Builder {
        //region Members
        private CpuOptions cpuThreads;
        //endregion

        private Builder() {
            this.cpuThreads = new CpuOptions();
        }

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

        //region Build methods
        public Builder setThreadsPerCore(final Integer threads) {
            cpuThreads.setThreadsPerCore(threads);
            return this;
        }

        public CpuOptions build() {
            // Validations
            return cpuThreads;
        }
        //endregion
    }
    //endregion


    //region isSet methods
    @JsonIgnore
    public boolean isThreadsPerCoreSet() {
        return isSet.contains("threadsPerCore");
    }

    //endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy