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

io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricStatusFluentImpl Maven / Gradle / Ivy

package io.fabric8.kubernetes.api.model.autoscaling.v2beta1;

import io.fabric8.kubernetes.api.model.LabelSelectorBuilder;
import io.fabric8.kubernetes.api.model.LabelSelectorFluentImpl;
import io.fabric8.kubernetes.api.builder.Nested;
import io.fabric8.kubernetes.api.model.LabelSelector;
import io.fabric8.kubernetes.api.model.Quantity;
import java.lang.String;
import java.util.LinkedHashMap;
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 ExternalMetricStatusFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricStatusFluent{
  public ExternalMetricStatusFluentImpl() {
  }
  public ExternalMetricStatusFluentImpl(io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricStatus instance) {
    this.withCurrentAverageValue(instance.getCurrentAverageValue()); 
    this.withCurrentValue(instance.getCurrentValue()); 
    this.withMetricName(instance.getMetricName()); 
    this.withMetricSelector(instance.getMetricSelector()); 
    this.withAdditionalProperties(instance.getAdditionalProperties());

  }
  private io.fabric8.kubernetes.api.model.Quantity currentAverageValue;
  private io.fabric8.kubernetes.api.model.Quantity currentValue;
  private java.lang.String metricName;
  private io.fabric8.kubernetes.api.model.LabelSelectorBuilder metricSelector;
  private java.util.Map additionalProperties;
  public io.fabric8.kubernetes.api.model.Quantity getCurrentAverageValue() {
    return this.currentAverageValue;
  }
  public A withCurrentAverageValue(io.fabric8.kubernetes.api.model.Quantity currentAverageValue) {
    this.currentAverageValue=currentAverageValue; return (A) this;
  }
  public java.lang.Boolean hasCurrentAverageValue() {
    return this.currentAverageValue != null;
  }
  public A withNewCurrentAverageValue(java.lang.String amount,java.lang.String format) {
    return (A)withCurrentAverageValue(new Quantity(amount, format));
  }
  public A withNewCurrentAverageValue(java.lang.String amount) {
    return (A)withCurrentAverageValue(new Quantity(amount));
  }
  public io.fabric8.kubernetes.api.model.Quantity getCurrentValue() {
    return this.currentValue;
  }
  public A withCurrentValue(io.fabric8.kubernetes.api.model.Quantity currentValue) {
    this.currentValue=currentValue; return (A) this;
  }
  public java.lang.Boolean hasCurrentValue() {
    return this.currentValue != null;
  }
  public A withNewCurrentValue(java.lang.String amount,java.lang.String format) {
    return (A)withCurrentValue(new Quantity(amount, format));
  }
  public A withNewCurrentValue(java.lang.String amount) {
    return (A)withCurrentValue(new Quantity(amount));
  }
  public java.lang.String getMetricName() {
    return this.metricName;
  }
  public A withMetricName(java.lang.String metricName) {
    this.metricName=metricName; return (A) this;
  }
  public java.lang.Boolean hasMetricName() {
    return this.metricName != null;
  }
  
  /**
   * Method is deprecated. use withMetricName instead.
   */
  @java.lang.Deprecated
  public A withNewMetricName(java.lang.String arg0) {
    return (A)withMetricName(new String(arg0));
  }
  
  /**
   * This method has been deprecated, please use method buildMetricSelector instead.
   * @return The buildable object.
   */
  @java.lang.Deprecated
  public io.fabric8.kubernetes.api.model.LabelSelector getMetricSelector() {
    return this.metricSelector!=null?this.metricSelector.build():null;
  }
  public io.fabric8.kubernetes.api.model.LabelSelector buildMetricSelector() {
    return this.metricSelector!=null?this.metricSelector.build():null;
  }
  public A withMetricSelector(io.fabric8.kubernetes.api.model.LabelSelector metricSelector) {
    _visitables.get("metricSelector").remove(this.metricSelector);
    if (metricSelector!=null){ this.metricSelector= new io.fabric8.kubernetes.api.model.LabelSelectorBuilder(metricSelector); _visitables.get("metricSelector").add(this.metricSelector);} return (A) this;
  }
  public java.lang.Boolean hasMetricSelector() {
    return this.metricSelector != null;
  }
  public io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricStatusFluent.MetricSelectorNested withNewMetricSelector() {
    return new io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricStatusFluentImpl.MetricSelectorNestedImpl();
  }
  public io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricStatusFluent.MetricSelectorNested withNewMetricSelectorLike(io.fabric8.kubernetes.api.model.LabelSelector item) {
    return new io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricStatusFluentImpl.MetricSelectorNestedImpl(item);
  }
  public io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricStatusFluent.MetricSelectorNested editMetricSelector() {
    return withNewMetricSelectorLike(getMetricSelector());
  }
  public io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricStatusFluent.MetricSelectorNested editOrNewMetricSelector() {
    return withNewMetricSelectorLike(getMetricSelector() != null ? getMetricSelector(): new io.fabric8.kubernetes.api.model.LabelSelectorBuilder().build());
  }
  public io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricStatusFluent.MetricSelectorNested editOrNewMetricSelectorLike(io.fabric8.kubernetes.api.model.LabelSelector item) {
    return withNewMetricSelectorLike(getMetricSelector() != null ? getMetricSelector(): item);
  }
  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;
    ExternalMetricStatusFluentImpl that = (ExternalMetricStatusFluentImpl) o;
    if (currentAverageValue != null ? !currentAverageValue.equals(that.currentAverageValue) :that.currentAverageValue != null) return false;
    if (currentValue != null ? !currentValue.equals(that.currentValue) :that.currentValue != null) return false;
    if (metricName != null ? !metricName.equals(that.metricName) :that.metricName != null) return false;
    if (metricSelector != null ? !metricSelector.equals(that.metricSelector) :that.metricSelector != 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(currentAverageValue,  currentValue,  metricName,  metricSelector,  additionalProperties,  super.hashCode());
  }
  public class MetricSelectorNestedImpl extends io.fabric8.kubernetes.api.model.LabelSelectorFluentImpl> implements io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricStatusFluent.MetricSelectorNested,io.fabric8.kubernetes.api.builder.Nested{
    MetricSelectorNestedImpl(io.fabric8.kubernetes.api.model.LabelSelector item) {
      this.builder = new io.fabric8.kubernetes.api.model.LabelSelectorBuilder(this, item);
    }
    MetricSelectorNestedImpl() {
      this.builder = new io.fabric8.kubernetes.api.model.LabelSelectorBuilder(this);
    }
    io.fabric8.kubernetes.api.model.LabelSelectorBuilder builder;
    public N and() {
      return (N) ExternalMetricStatusFluentImpl.this.withMetricSelector(builder.build());
    }
    public N endMetricSelector() {
      return and();
    }
    
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy