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

io.fabric8.kubernetes.api.model.autoscaling.v2beta2.HPAScalingPolicyFluentImpl Maven / Gradle / Ivy

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

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

 /**
  * Generated
  */
public class HPAScalingPolicyFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.autoscaling.v2beta2.HPAScalingPolicyFluent{
  public HPAScalingPolicyFluentImpl() {
  }
  public HPAScalingPolicyFluentImpl(io.fabric8.kubernetes.api.model.autoscaling.v2beta2.HPAScalingPolicy instance) {
    this.withPeriodSeconds(instance.getPeriodSeconds()); 
    this.withType(instance.getType()); 
    this.withValue(instance.getValue()); 
  }
  private java.lang.Integer periodSeconds;
  private java.lang.String type;
  private java.lang.Integer value;
  public java.lang.Integer getPeriodSeconds() {
    return this.periodSeconds;
  }
  public A withPeriodSeconds(java.lang.Integer periodSeconds) {
    this.periodSeconds=periodSeconds; return (A) this;
  }
  public java.lang.Boolean hasPeriodSeconds() {
    return this.periodSeconds != null;
  }
  public java.lang.String getType() {
    return this.type;
  }
  public A withType(java.lang.String type) {
    this.type=type; return (A) this;
  }
  public java.lang.Boolean hasType() {
    return this.type != null;
  }
  
  /**
   * Method is deprecated. use withType instead.
   */
  @java.lang.Deprecated
  public A withNewType(java.lang.String arg0) {
    return (A)withType(new String(arg0));
  }
  public java.lang.Integer getValue() {
    return this.value;
  }
  public A withValue(java.lang.Integer value) {
    this.value=value; return (A) this;
  }
  public java.lang.Boolean hasValue() {
    return this.value != null;
  }
  public boolean equals(java.lang.Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    HPAScalingPolicyFluentImpl that = (HPAScalingPolicyFluentImpl) o;
    if (periodSeconds != null ? !periodSeconds.equals(that.periodSeconds) :that.periodSeconds != null) return false;
    if (type != null ? !type.equals(that.type) :that.type != null) return false;
    if (value != null ? !value.equals(that.value) :that.value != null) return false;
    return true;
  }
  public int hashCode() {
    return java.util.Objects.hash(periodSeconds,  type,  value,  super.hashCode());
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy