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

io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowDistinguisherMethodBuilder Maven / Gradle / Ivy

There is a newer version: 7.0.1
Show newest version
package io.fabric8.kubernetes.api.model.flowcontrol.v1beta1;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;

public class FlowDistinguisherMethodBuilder extends io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowDistinguisherMethodFluentImpl implements io.fabric8.kubernetes.api.builder.VisitableBuilder {

    io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowDistinguisherMethodFluent fluent;
    java.lang.Boolean validationEnabled;

    public FlowDistinguisherMethodBuilder() {
        this(true);
    }

    public FlowDistinguisherMethodBuilder(java.lang.Boolean validationEnabled) {
        this(new FlowDistinguisherMethod(), validationEnabled);
    }

    public FlowDistinguisherMethodBuilder(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowDistinguisherMethodFluent fluent) {
        this(fluent, true);
    }

    public FlowDistinguisherMethodBuilder(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowDistinguisherMethodFluent fluent,java.lang.Boolean validationEnabled) {
        this(fluent, new FlowDistinguisherMethod(), validationEnabled);
    }

    public FlowDistinguisherMethodBuilder(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowDistinguisherMethodFluent fluent,io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowDistinguisherMethod instance) {
        this(fluent, instance, true);
    }

    public FlowDistinguisherMethodBuilder(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowDistinguisherMethodFluent fluent,io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowDistinguisherMethod instance,java.lang.Boolean validationEnabled) {
        this.fluent = fluent; 
        fluent.withType(instance.getType()); 
        this.validationEnabled = validationEnabled; 
    }

    public FlowDistinguisherMethodBuilder(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowDistinguisherMethod instance) {
        this(instance,true);
    }

    public FlowDistinguisherMethodBuilder(io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowDistinguisherMethod instance,java.lang.Boolean validationEnabled) {
        this.fluent = this; 
        this.withType(instance.getType()); 
        this.validationEnabled = validationEnabled; 
    }

    public io.fabric8.kubernetes.api.model.flowcontrol.v1beta1.FlowDistinguisherMethod build() {
        FlowDistinguisherMethod buildable = new FlowDistinguisherMethod(fluent.getType());
        return buildable;
    }

    public boolean equals(java.lang.Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        if (!super.equals(o)) return false;
        FlowDistinguisherMethodBuilder that = (FlowDistinguisherMethodBuilder) 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