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

io.fabric8.kubernetes.api.model.IntOrStringFluentImpl Maven / Gradle / Ivy

package io.fabric8.kubernetes.api.model;

import java.lang.Integer;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
import java.util.Map;
import java.util.LinkedHashMap;

 /**
  * Generated
  */
public class IntOrStringFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.IntOrStringFluent{
  public IntOrStringFluentImpl() {
  }
  public IntOrStringFluentImpl(io.fabric8.kubernetes.api.model.IntOrString instance) {
    this.withIntVal(instance.getIntVal()); 
    this.withKind(instance.getKind()); 
    this.withStrVal(instance.getStrVal()); 
    this.withAdditionalProperties(instance.getAdditionalProperties()); 
    this.withIntVal(instance.getIntVal());

    this.withKind(instance.getKind());

    this.withStrVal(instance.getStrVal());

  }
  private java.lang.Integer IntVal;
  private java.lang.Integer Kind;
  private java.lang.String StrVal;
  private java.util.Map additionalProperties;
  public java.lang.Integer getIntVal() {
    return this.IntVal;
  }
  public A withIntVal(java.lang.Integer IntVal) {
    this.IntVal=IntVal; return (A) this;
  }
  public java.lang.Boolean hasIntVal() {
    return this.IntVal != null;
  }
  public java.lang.Integer getKind() {
    return this.Kind;
  }
  public A withKind(java.lang.Integer Kind) {
    this.Kind=Kind; return (A) this;
  }
  public java.lang.Boolean hasKind() {
    return this.Kind != null;
  }
  public java.lang.String getStrVal() {
    return this.StrVal;
  }
  public A withStrVal(java.lang.String StrVal) {
    this.StrVal=StrVal; return (A) this;
  }
  public java.lang.Boolean hasStrVal() {
    return this.StrVal != null;
  }
  
  /**
   * Method is deprecated. use withStrVal instead.
   */
  @java.lang.Deprecated
  public A withNewStrVal(java.lang.String arg0) {
    return (A)withStrVal(new String(arg0));
  }
  public A addToAdditionalProperties(java.lang.String key,java.lang.Object value) {
    if(this.additionalProperties == null && key != null && value != null) { this.additionalProperties = new java.util.LinkedHashMap(); }
    if(key != null && value != null) {this.additionalProperties.put(key, value);} return (A)this;
  }
  public A addToAdditionalProperties(java.util.Map map) {
    if(this.additionalProperties == null && map != null) { this.additionalProperties = new java.util.LinkedHashMap(); }
    if(map != null) { this.additionalProperties.putAll(map);} return (A)this;
  }
  public A removeFromAdditionalProperties(java.lang.String key) {
    if(this.additionalProperties == null) { return (A) this; }
    if(key != null && this.additionalProperties != null) {this.additionalProperties.remove(key);} return (A)this;
  }
  public A removeFromAdditionalProperties(java.util.Map map) {
    if(this.additionalProperties == null) { return (A) this; }
    if(map != null) { for(Object key : map.keySet()) {if (this.additionalProperties != null){this.additionalProperties.remove(key);}}} return (A)this;
  }
  public java.util.Map getAdditionalProperties() {
    return this.additionalProperties;
  }
  public A withAdditionalProperties(java.util.Map additionalProperties) {
    if (additionalProperties == null) { this.additionalProperties =  null;} else {this.additionalProperties = new java.util.LinkedHashMap(additionalProperties);} return (A) this;
  }
  public java.lang.Boolean hasAdditionalProperties() {
    return this.additionalProperties != null;
  }
  public boolean equals(java.lang.Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    IntOrStringFluentImpl that = (IntOrStringFluentImpl) o;
    if (IntVal != null ? !IntVal.equals(that.IntVal) :that.IntVal != null) return false;
    if (Kind != null ? !Kind.equals(that.Kind) :that.Kind != null) return false;
    if (StrVal != null ? !StrVal.equals(that.StrVal) :that.StrVal != null) return false;
    if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
    return true;
  }
  public int hashCode() {
    return java.util.Objects.hash(IntVal,  Kind,  StrVal,  additionalProperties,  super.hashCode());
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy