
io.kubernetes.client.models.V2beta1ObjectMetricSourceBuilder Maven / Gradle / Ivy
package io.kubernetes.client.models;
import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class V2beta1ObjectMetricSourceBuilder extends V2beta1ObjectMetricSourceFluentImpl implements VisitableBuilder{
V2beta1ObjectMetricSourceFluent> fluent;
Boolean validationEnabled;
public V2beta1ObjectMetricSourceBuilder(){
this(true);
}
public V2beta1ObjectMetricSourceBuilder(Boolean validationEnabled){
this(new V2beta1ObjectMetricSource(), validationEnabled);
}
public V2beta1ObjectMetricSourceBuilder(V2beta1ObjectMetricSourceFluent> fluent){
this(fluent, true);
}
public V2beta1ObjectMetricSourceBuilder(V2beta1ObjectMetricSourceFluent> fluent,Boolean validationEnabled){
this(fluent, new V2beta1ObjectMetricSource(), validationEnabled);
}
public V2beta1ObjectMetricSourceBuilder(V2beta1ObjectMetricSourceFluent> fluent,V2beta1ObjectMetricSource instance){
this(fluent, instance, true);
}
public V2beta1ObjectMetricSourceBuilder(V2beta1ObjectMetricSourceFluent> fluent,V2beta1ObjectMetricSource instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withMetricName(instance.getMetricName());
fluent.withTarget(instance.getTarget());
fluent.withTargetValue(instance.getTargetValue());
this.validationEnabled = validationEnabled;
}
public V2beta1ObjectMetricSourceBuilder(V2beta1ObjectMetricSource instance){
this(instance,true);
}
public V2beta1ObjectMetricSourceBuilder(V2beta1ObjectMetricSource instance,Boolean validationEnabled){
this.fluent = this;
this.withMetricName(instance.getMetricName());
this.withTarget(instance.getTarget());
this.withTargetValue(instance.getTargetValue());
this.validationEnabled = validationEnabled;
}
public V2beta1ObjectMetricSource build(){
V2beta1ObjectMetricSource buildable = new V2beta1ObjectMetricSource();
buildable.setMetricName(fluent.getMetricName());
buildable.setTarget(fluent.getTarget());
buildable.setTargetValue(fluent.getTargetValue());
return buildable;
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V2beta1ObjectMetricSourceBuilder that = (V2beta1ObjectMetricSourceBuilder) o;
if (fluent != null &&fluent != this ? !fluent.equals(that.fluent) :that.fluent != null &&fluent != this ) return false;
if (validationEnabled != null ? !validationEnabled.equals(that.validationEnabled) :that.validationEnabled != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy