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

io.kubernetes.client.models.V1EndpointAddressBuilder Maven / Gradle / Ivy

package io.kubernetes.client.models;

import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;

public class V1EndpointAddressBuilder extends V1EndpointAddressFluentImpl implements VisitableBuilder{

    V1EndpointAddressFluent fluent;
    Boolean validationEnabled;

    public V1EndpointAddressBuilder(){
            this(true);
    }
    public V1EndpointAddressBuilder(Boolean validationEnabled){
            this(new V1EndpointAddress(), validationEnabled);
    }
    public V1EndpointAddressBuilder(V1EndpointAddressFluent fluent){
            this(fluent, true);
    }
    public V1EndpointAddressBuilder(V1EndpointAddressFluent fluent,Boolean validationEnabled){
            this(fluent, new V1EndpointAddress(), validationEnabled);
    }
    public V1EndpointAddressBuilder(V1EndpointAddressFluent fluent,V1EndpointAddress instance){
            this(fluent, instance, true);
    }
    public V1EndpointAddressBuilder(V1EndpointAddressFluent fluent,V1EndpointAddress instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withHostname(instance.getHostname());

            fluent.withIp(instance.getIp());

            fluent.withNodeName(instance.getNodeName());

            fluent.withTargetRef(instance.getTargetRef());

            this.validationEnabled = validationEnabled; 
    }
    public V1EndpointAddressBuilder(V1EndpointAddress instance){
            this(instance,true);
    }
    public V1EndpointAddressBuilder(V1EndpointAddress instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withHostname(instance.getHostname());

            this.withIp(instance.getIp());

            this.withNodeName(instance.getNodeName());

            this.withTargetRef(instance.getTargetRef());

            this.validationEnabled = validationEnabled; 
    }

    public V1EndpointAddress build(){
            V1EndpointAddress buildable = new V1EndpointAddress();
            buildable.setHostname(fluent.getHostname());
            buildable.setIp(fluent.getIp());
            buildable.setNodeName(fluent.getNodeName());
            buildable.setTargetRef(fluent.getTargetRef());
            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;
            V1EndpointAddressBuilder that = (V1EndpointAddressBuilder) 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