io.kubernetes.client.openapi.models.V1beta1FlowDistinguisherMethodBuilder 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 V1beta1FlowDistinguisherMethodBuilder extends V1beta1FlowDistinguisherMethodFluentImpl implements VisitableBuilder {
V1beta1FlowDistinguisherMethodFluent> fluent;
Boolean validationEnabled;
public V1beta1FlowDistinguisherMethodBuilder() {
this(true);
}
public V1beta1FlowDistinguisherMethodBuilder(Boolean validationEnabled) {
this(new V1beta1FlowDistinguisherMethod(), validationEnabled);
}
public V1beta1FlowDistinguisherMethodBuilder(V1beta1FlowDistinguisherMethodFluent> fluent) {
this(fluent, true);
}
public V1beta1FlowDistinguisherMethodBuilder(V1beta1FlowDistinguisherMethodFluent> fluent,Boolean validationEnabled) {
this(fluent, new V1beta1FlowDistinguisherMethod(), validationEnabled);
}
public V1beta1FlowDistinguisherMethodBuilder(V1beta1FlowDistinguisherMethodFluent> fluent,V1beta1FlowDistinguisherMethod instance) {
this(fluent, instance, true);
}
public V1beta1FlowDistinguisherMethodBuilder(V1beta1FlowDistinguisherMethodFluent> fluent,V1beta1FlowDistinguisherMethod instance,Boolean validationEnabled) {
this.fluent = fluent;
fluent.withType(instance.getType());
this.validationEnabled = validationEnabled;
}
public V1beta1FlowDistinguisherMethodBuilder(V1beta1FlowDistinguisherMethod instance) {
this(instance,true);
}
public V1beta1FlowDistinguisherMethodBuilder(V1beta1FlowDistinguisherMethod instance,Boolean validationEnabled) {
this.fluent = this;
this.withType(instance.getType());
this.validationEnabled = validationEnabled;
}
public V1beta1FlowDistinguisherMethod build() {
V1beta1FlowDistinguisherMethod buildable = new V1beta1FlowDistinguisherMethod();
buildable.setType(fluent.getType());
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;
V1beta1FlowDistinguisherMethodBuilder that = (V1beta1FlowDistinguisherMethodBuilder) 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());
}
}