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

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

package io.fabric8.kubernetes.api.model;

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

 /**
  * Generated
  */
public class TopologySpreadConstraintFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.TopologySpreadConstraintFluent{
  public TopologySpreadConstraintFluentImpl() {
  }
  public TopologySpreadConstraintFluentImpl(io.fabric8.kubernetes.api.model.TopologySpreadConstraint instance) {
    this.withLabelSelector(instance.getLabelSelector()); 
    this.withMaxSkew(instance.getMaxSkew()); 
    this.withTopologyKey(instance.getTopologyKey()); 
    this.withWhenUnsatisfiable(instance.getWhenUnsatisfiable()); 
    this.withAdditionalProperties(instance.getAdditionalProperties());

  }
  private io.fabric8.kubernetes.api.model.LabelSelectorBuilder labelSelector;
  private java.lang.Integer maxSkew;
  private java.lang.String topologyKey;
  private java.lang.String whenUnsatisfiable;
  private java.util.Map additionalProperties;
  
  /**
   * This method has been deprecated, please use method buildLabelSelector instead.
   * @return The buildable object.
   */
  @java.lang.Deprecated
  public io.fabric8.kubernetes.api.model.LabelSelector getLabelSelector() {
    return this.labelSelector!=null?this.labelSelector.build():null;
  }
  public io.fabric8.kubernetes.api.model.LabelSelector buildLabelSelector() {
    return this.labelSelector!=null?this.labelSelector.build():null;
  }
  public A withLabelSelector(io.fabric8.kubernetes.api.model.LabelSelector labelSelector) {
    _visitables.get("labelSelector").remove(this.labelSelector);
    if (labelSelector!=null){ this.labelSelector= new io.fabric8.kubernetes.api.model.LabelSelectorBuilder(labelSelector); _visitables.get("labelSelector").add(this.labelSelector);} return (A) this;
  }
  public java.lang.Boolean hasLabelSelector() {
    return this.labelSelector != null;
  }
  public io.fabric8.kubernetes.api.model.TopologySpreadConstraintFluent.LabelSelectorNested withNewLabelSelector() {
    return new io.fabric8.kubernetes.api.model.TopologySpreadConstraintFluentImpl.LabelSelectorNestedImpl();
  }
  public io.fabric8.kubernetes.api.model.TopologySpreadConstraintFluent.LabelSelectorNested withNewLabelSelectorLike(io.fabric8.kubernetes.api.model.LabelSelector item) {
    return new io.fabric8.kubernetes.api.model.TopologySpreadConstraintFluentImpl.LabelSelectorNestedImpl(item);
  }
  public io.fabric8.kubernetes.api.model.TopologySpreadConstraintFluent.LabelSelectorNested editLabelSelector() {
    return withNewLabelSelectorLike(getLabelSelector());
  }
  public io.fabric8.kubernetes.api.model.TopologySpreadConstraintFluent.LabelSelectorNested editOrNewLabelSelector() {
    return withNewLabelSelectorLike(getLabelSelector() != null ? getLabelSelector(): new io.fabric8.kubernetes.api.model.LabelSelectorBuilder().build());
  }
  public io.fabric8.kubernetes.api.model.TopologySpreadConstraintFluent.LabelSelectorNested editOrNewLabelSelectorLike(io.fabric8.kubernetes.api.model.LabelSelector item) {
    return withNewLabelSelectorLike(getLabelSelector() != null ? getLabelSelector(): item);
  }
  public java.lang.Integer getMaxSkew() {
    return this.maxSkew;
  }
  public A withMaxSkew(java.lang.Integer maxSkew) {
    this.maxSkew=maxSkew; return (A) this;
  }
  public java.lang.Boolean hasMaxSkew() {
    return this.maxSkew != null;
  }
  public java.lang.String getTopologyKey() {
    return this.topologyKey;
  }
  public A withTopologyKey(java.lang.String topologyKey) {
    this.topologyKey=topologyKey; return (A) this;
  }
  public java.lang.Boolean hasTopologyKey() {
    return this.topologyKey != null;
  }
  
  /**
   * Method is deprecated. use withTopologyKey instead.
   */
  @java.lang.Deprecated
  public A withNewTopologyKey(java.lang.String arg0) {
    return (A)withTopologyKey(new String(arg0));
  }
  public java.lang.String getWhenUnsatisfiable() {
    return this.whenUnsatisfiable;
  }
  public A withWhenUnsatisfiable(java.lang.String whenUnsatisfiable) {
    this.whenUnsatisfiable=whenUnsatisfiable; return (A) this;
  }
  public java.lang.Boolean hasWhenUnsatisfiable() {
    return this.whenUnsatisfiable != null;
  }
  
  /**
   * Method is deprecated. use withWhenUnsatisfiable instead.
   */
  @java.lang.Deprecated
  public A withNewWhenUnsatisfiable(java.lang.String arg0) {
    return (A)withWhenUnsatisfiable(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;
    TopologySpreadConstraintFluentImpl that = (TopologySpreadConstraintFluentImpl) o;
    if (labelSelector != null ? !labelSelector.equals(that.labelSelector) :that.labelSelector != null) return false;
    if (maxSkew != null ? !maxSkew.equals(that.maxSkew) :that.maxSkew != null) return false;
    if (topologyKey != null ? !topologyKey.equals(that.topologyKey) :that.topologyKey != null) return false;
    if (whenUnsatisfiable != null ? !whenUnsatisfiable.equals(that.whenUnsatisfiable) :that.whenUnsatisfiable != 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(labelSelector,  maxSkew,  topologyKey,  whenUnsatisfiable,  additionalProperties,  super.hashCode());
  }
  public class LabelSelectorNestedImpl extends io.fabric8.kubernetes.api.model.LabelSelectorFluentImpl> implements io.fabric8.kubernetes.api.model.TopologySpreadConstraintFluent.LabelSelectorNested,io.fabric8.kubernetes.api.builder.Nested{
    LabelSelectorNestedImpl(io.fabric8.kubernetes.api.model.LabelSelector item) {
      this.builder = new io.fabric8.kubernetes.api.model.LabelSelectorBuilder(this, item);
    }
    LabelSelectorNestedImpl() {
      this.builder = new io.fabric8.kubernetes.api.model.LabelSelectorBuilder(this);
    }
    io.fabric8.kubernetes.api.model.LabelSelectorBuilder builder;
    public N and() {
      return (N) TopologySpreadConstraintFluentImpl.this.withLabelSelector(builder.build());
    }
    public N endLabelSelector() {
      return and();
    }
    
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy