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

com.spotinst.sdkjava.model.bl.ocean.kubernetes.K8sVngTaints Maven / Gradle / Ivy

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


import com.fasterxml.jackson.annotation.JsonIgnore;

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


public class K8sVngTaints {

    @JsonIgnore
    private Set isSet;
    private String 		effect;
    private String 		key;
    private String 		value;

    private K8sVngTaints(){
        isSet = new HashSet<>();
    }

    public Set getIsSet() {
        return isSet;
    }

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

    public String getEffect() {
        return effect;
    }

    public void setEffect(String effect) {
        isSet.add("effect");
        this.effect = effect;
    }

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        isSet.add("key");
        this.key = key;
    }

    public String getValue() {
        return value;
    }

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

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        K8sVngTaints k8sVngTaints = (K8sVngTaints) o;

        if (!key.equals(k8sVngTaints.key)) return false;

        if (!key.equals(k8sVngTaints.effect)) return false;

        return value.equals(k8sVngTaints.value);

    }

    @Override
    public int hashCode() {
        int result = key.hashCode();
        result = 31 * result + effect.hashCode();
        result = 31 * result + value.hashCode();
        return result;
    }

    public static class Builder {
        private K8sVngTaints tag;

        private Builder() {
            this.tag = new K8sVngTaints();
        }

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

        public Builder setEffect(final String effect) {
            tag.setEffect(effect);
            return this;
        }

        public Builder setKey(final String key) {
            tag.setKey(key);
            return this;
        }

        public Builder setValue(final String value) {
            tag.setValue(value);
            return this;
        }

        public K8sVngTaints build() {
            return tag;
        }
    }

    @JsonIgnore
    public boolean isEffectSet() {
        return isSet.contains("effect");
    }

    @JsonIgnore
    public boolean isKeySet() {
        return isSet.contains("key");
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy