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

io.fabric8.kubernetes.api.model.node.v1beta1.OverheadFluentImpl Maven / Gradle / Ivy

package io.fabric8.kubernetes.api.model.node.v1beta1;

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

 /**
  * Generated
  */
public class OverheadFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.node.v1beta1.OverheadFluent{
  public OverheadFluentImpl() {
  }
  public OverheadFluentImpl(io.fabric8.kubernetes.api.model.node.v1beta1.Overhead instance) {
    this.withPodFixed(instance.getPodFixed()); 
    this.withAdditionalProperties(instance.getAdditionalProperties());

  }
  private java.util.Map podFixed;
  private java.util.Map additionalProperties;
  public A addToPodFixed(java.lang.String key,io.fabric8.kubernetes.api.model.Quantity value) {
    if(this.podFixed == null && key != null && value != null) { this.podFixed = new java.util.LinkedHashMap(); }
    if(key != null && value != null) {this.podFixed.put(key, value);} return (A)this;
  }
  public A addToPodFixed(java.util.Map map) {
    if(this.podFixed == null && map != null) { this.podFixed = new java.util.LinkedHashMap(); }
    if(map != null) { this.podFixed.putAll(map);} return (A)this;
  }
  public A removeFromPodFixed(java.lang.String key) {
    if(this.podFixed == null) { return (A) this; }
    if(key != null && this.podFixed != null) {this.podFixed.remove(key);} return (A)this;
  }
  public A removeFromPodFixed(java.util.Map map) {
    if(this.podFixed == null) { return (A) this; }
    if(map != null) { for(Object key : map.keySet()) {if (this.podFixed != null){this.podFixed.remove(key);}}} return (A)this;
  }
  public java.util.Map getPodFixed() {
    return this.podFixed;
  }
  public A withPodFixed(java.util.Map podFixed) {
    if (podFixed == null) { this.podFixed =  null;} else {this.podFixed = new java.util.LinkedHashMap(podFixed);} return (A) this;
  }
  public java.lang.Boolean hasPodFixed() {
    return this.podFixed != null;
  }
  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;
    OverheadFluentImpl that = (OverheadFluentImpl) o;
    if (podFixed != null ? !podFixed.equals(that.podFixed) :that.podFixed != 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(podFixed,  additionalProperties,  super.hashCode());
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy