io.kubernetes.client.openapi.models.V1SchedulingBuilder 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 V1SchedulingBuilder extends V1SchedulingFluentImpl implements VisitableBuilder {
V1SchedulingFluent> fluent;
Boolean validationEnabled;
public V1SchedulingBuilder() {
this(true);
}
public V1SchedulingBuilder(Boolean validationEnabled) {
this(new V1Scheduling(), validationEnabled);
}
public V1SchedulingBuilder(V1SchedulingFluent> fluent) {
this(fluent, true);
}
public V1SchedulingBuilder(V1SchedulingFluent> fluent,Boolean validationEnabled) {
this(fluent, new V1Scheduling(), validationEnabled);
}
public V1SchedulingBuilder(V1SchedulingFluent> fluent,V1Scheduling instance) {
this(fluent, instance, true);
}
public V1SchedulingBuilder(V1SchedulingFluent> fluent,V1Scheduling instance,Boolean validationEnabled) {
this.fluent = fluent;
fluent.withNodeSelector(instance.getNodeSelector());
fluent.withTolerations(instance.getTolerations());
this.validationEnabled = validationEnabled;
}
public V1SchedulingBuilder(V1Scheduling instance) {
this(instance,true);
}
public V1SchedulingBuilder(V1Scheduling instance,Boolean validationEnabled) {
this.fluent = this;
this.withNodeSelector(instance.getNodeSelector());
this.withTolerations(instance.getTolerations());
this.validationEnabled = validationEnabled;
}
public V1Scheduling build() {
V1Scheduling buildable = new V1Scheduling();
buildable.setNodeSelector(fluent.getNodeSelector());
buildable.setTolerations(fluent.getTolerations());
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;
V1SchedulingBuilder that = (V1SchedulingBuilder) 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());
}
}