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

com.spotinst.sdkjava.model.Tag 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 aharontwizer on 8/24/15.
 */
public class Tag {
    //region Members
    // Partial Update support
    @JsonIgnore
    private Set isSet;
    private String tagKey;
    private String tagValue;
    //endregion

    //region Constructors
    private Tag(){
        isSet = new HashSet<>();
    }

    //endregion

    //region Getters & Setters

    public Set getIsSet() {
        return isSet;
    }

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

    public String getTagKey() {
        return tagKey;
    }

    public void setTagKey(String tagKey) {
        isSet.add("tagKey");
        this.tagKey = tagKey;
    }

    public String getTagValue() {
        return tagValue;
    }

    public void setTagValue(String tagValue) {
        isSet.add("tagValue");
        this.tagValue = tagValue;
    }

    //endregion

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

        Tag tag = (Tag) o;

        if (!tagKey.equals(tag.tagKey)) return false;
        return tagValue.equals(tag.tagValue);

    }

    @Override
    public int hashCode() {
        int result = tagKey.hashCode();
        result = 31 * result + tagValue.hashCode();
        return result;
    }
    //endregion
    //region Builder class
    public static class Builder {
        private Tag tag;

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

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

        public Builder setTagKey(final String tagKey) {
            tag.setTagKey(tagKey);
            return this;
        }

        public Builder setTagValue(final String tagValue) {
            tag.setTagValue(tagValue);
            return this;
        }

        public Tag build() {
            // TODO : Validations
            return tag;
        }
    }
    //endregion

    //region isSet methods
    // Is tagKey Set boolean method
    @JsonIgnore
    public boolean isTagKeySet() {
        return isSet.contains("tagKey");
    }

    // Is tagValue Set boolean method
    @JsonIgnore
    public boolean isTagValueSet() {
        return isSet.contains("tagValue");
    }

    //endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy