![JAR search and dependency download from the Maven repository](/logo.png)
io.kubernetes.client.openapi.models.V2beta2ResourceMetricSourceBuilder Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class V2beta2ResourceMetricSourceBuilder extends V2beta2ResourceMetricSourceFluentImpl implements VisitableBuilder {
V2beta2ResourceMetricSourceFluent> fluent;
Boolean validationEnabled;
public V2beta2ResourceMetricSourceBuilder() {
this(true);
}
public V2beta2ResourceMetricSourceBuilder(Boolean validationEnabled) {
this(new V2beta2ResourceMetricSource(), validationEnabled);
}
public V2beta2ResourceMetricSourceBuilder(V2beta2ResourceMetricSourceFluent> fluent) {
this(fluent, true);
}
public V2beta2ResourceMetricSourceBuilder(V2beta2ResourceMetricSourceFluent> fluent,Boolean validationEnabled) {
this(fluent, new V2beta2ResourceMetricSource(), validationEnabled);
}
public V2beta2ResourceMetricSourceBuilder(V2beta2ResourceMetricSourceFluent> fluent,V2beta2ResourceMetricSource instance) {
this(fluent, instance, true);
}
public V2beta2ResourceMetricSourceBuilder(V2beta2ResourceMetricSourceFluent> fluent,V2beta2ResourceMetricSource instance,Boolean validationEnabled) {
this.fluent = fluent;
fluent.withName(instance.getName());
fluent.withTarget(instance.getTarget());
this.validationEnabled = validationEnabled;
}
public V2beta2ResourceMetricSourceBuilder(V2beta2ResourceMetricSource instance) {
this(instance,true);
}
public V2beta2ResourceMetricSourceBuilder(V2beta2ResourceMetricSource instance,Boolean validationEnabled) {
this.fluent = this;
this.withName(instance.getName());
this.withTarget(instance.getTarget());
this.validationEnabled = validationEnabled;
}
public V2beta2ResourceMetricSource build() {
V2beta2ResourceMetricSource buildable = new V2beta2ResourceMetricSource();
buildable.setName(fluent.getName());
buildable.setTarget(fluent.getTarget());
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;
V2beta2ResourceMetricSourceBuilder that = (V2beta2ResourceMetricSourceBuilder) 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;
}
public int hashCode() {
return java.util.Objects.hash(fluent, validationEnabled, super.hashCode());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy