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

io.fabric8.openshift.api.model.installer.v1.ClusterNetworkEntryFluentImpl Maven / Gradle / Ivy

package io.fabric8.openshift.api.model.installer.v1;

import java.lang.Integer;
import java.lang.SuppressWarnings;
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
  */
  @SuppressWarnings(value = "unchecked")
  public class ClusterNetworkEntryFluentImpl> extends BaseFluent implements ClusterNetworkEntryFluent{
  public ClusterNetworkEntryFluentImpl() {
  }
  public ClusterNetworkEntryFluentImpl(io.fabric8.openshift.api.model.installer.v1.ClusterNetworkEntry instance) {
    this.withCidr(instance.getCidr()); 
    this.withHostPrefix(instance.getHostPrefix()); 
    this.withHostSubnetLength(instance.getHostSubnetLength()); 
    this.withAdditionalProperties(instance.getAdditionalProperties());

  }
  private String cidr;
  private Integer hostPrefix;
  private java.lang.Integer hostSubnetLength;
  private Map additionalProperties;
  public java.lang.String getCidr() {
    return this.cidr;
  }
  public A withCidr(java.lang.String cidr) {
    this.cidr=cidr; return (A) this;
  }
  public Boolean hasCidr() {
    return this.cidr != null;
  }
  public java.lang.Integer getHostPrefix() {
    return this.hostPrefix;
  }
  public A withHostPrefix(java.lang.Integer hostPrefix) {
    this.hostPrefix=hostPrefix; return (A) this;
  }
  public java.lang.Boolean hasHostPrefix() {
    return this.hostPrefix != null;
  }
  public java.lang.Integer getHostSubnetLength() {
    return this.hostSubnetLength;
  }
  public A withHostSubnetLength(java.lang.Integer hostSubnetLength) {
    this.hostSubnetLength=hostSubnetLength; return (A) this;
  }
  public java.lang.Boolean hasHostSubnetLength() {
    return this.hostSubnetLength != null;
  }
  public A addToAdditionalProperties(java.lang.String key,java.lang.Object value) {
    if(this.additionalProperties == null && key != null && value != null) { this.additionalProperties = new 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;
    ClusterNetworkEntryFluentImpl that = (ClusterNetworkEntryFluentImpl) o;
    if (cidr != null ? !cidr.equals(that.cidr) :that.cidr != null) return false;
    if (hostPrefix != null ? !hostPrefix.equals(that.hostPrefix) :that.hostPrefix != null) return false;
    if (hostSubnetLength != null ? !hostSubnetLength.equals(that.hostSubnetLength) :that.hostSubnetLength != 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(cidr,  hostPrefix,  hostSubnetLength,  additionalProperties,  super.hashCode());
  }
  public java.lang.String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (cidr != null) { sb.append("cidr:"); sb.append(cidr + ","); }
    if (hostPrefix != null) { sb.append("hostPrefix:"); sb.append(hostPrefix + ","); }
    if (hostSubnetLength != null) { sb.append("hostSubnetLength:"); sb.append(hostSubnetLength + ","); }
    if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
    sb.append("}");
    return sb.toString();
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy