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

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

package io.fabric8.kubernetes.api.model;

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 ServerAddressByClientCIDRFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.ServerAddressByClientCIDRFluent{
  public ServerAddressByClientCIDRFluentImpl() {
  }
  public ServerAddressByClientCIDRFluentImpl(io.fabric8.kubernetes.api.model.ServerAddressByClientCIDR instance) {
    this.withClientCIDR(instance.getClientCIDR()); 
    this.withServerAddress(instance.getServerAddress()); 
    this.withAdditionalProperties(instance.getAdditionalProperties());

  }
  private java.lang.String clientCIDR;
  private java.lang.String serverAddress;
  private java.util.Map additionalProperties;
  public java.lang.String getClientCIDR() {
    return this.clientCIDR;
  }
  public A withClientCIDR(java.lang.String clientCIDR) {
    this.clientCIDR=clientCIDR; return (A) this;
  }
  public java.lang.Boolean hasClientCIDR() {
    return this.clientCIDR != null;
  }
  
  /**
   * Method is deprecated. use withClientCIDR instead.
   */
  @java.lang.Deprecated
  public A withNewClientCIDR(java.lang.String arg0) {
    return (A)withClientCIDR(new String(arg0));
  }
  public java.lang.String getServerAddress() {
    return this.serverAddress;
  }
  public A withServerAddress(java.lang.String serverAddress) {
    this.serverAddress=serverAddress; return (A) this;
  }
  public java.lang.Boolean hasServerAddress() {
    return this.serverAddress != null;
  }
  
  /**
   * Method is deprecated. use withServerAddress instead.
   */
  @java.lang.Deprecated
  public A withNewServerAddress(java.lang.String arg0) {
    return (A)withServerAddress(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;
    ServerAddressByClientCIDRFluentImpl that = (ServerAddressByClientCIDRFluentImpl) o;
    if (clientCIDR != null ? !clientCIDR.equals(that.clientCIDR) :that.clientCIDR != null) return false;
    if (serverAddress != null ? !serverAddress.equals(that.serverAddress) :that.serverAddress != 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(clientCIDR,  serverAddress,  additionalProperties,  super.hashCode());
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy