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

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

package io.kubernetes.client.models;

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

public class V1beta1CustomResourceSubresourcesBuilder extends V1beta1CustomResourceSubresourcesFluentImpl implements VisitableBuilder{

    V1beta1CustomResourceSubresourcesFluent fluent;
    Boolean validationEnabled;

    public V1beta1CustomResourceSubresourcesBuilder(){
            this(true);
    }
    public V1beta1CustomResourceSubresourcesBuilder(Boolean validationEnabled){
            this(new V1beta1CustomResourceSubresources(), validationEnabled);
    }
    public V1beta1CustomResourceSubresourcesBuilder(V1beta1CustomResourceSubresourcesFluent fluent){
            this(fluent, true);
    }
    public V1beta1CustomResourceSubresourcesBuilder(V1beta1CustomResourceSubresourcesFluent fluent,Boolean validationEnabled){
            this(fluent, new V1beta1CustomResourceSubresources(), validationEnabled);
    }
    public V1beta1CustomResourceSubresourcesBuilder(V1beta1CustomResourceSubresourcesFluent fluent,V1beta1CustomResourceSubresources instance){
            this(fluent, instance, true);
    }
    public V1beta1CustomResourceSubresourcesBuilder(V1beta1CustomResourceSubresourcesFluent fluent,V1beta1CustomResourceSubresources instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withScale(instance.getScale());

            fluent.withStatus(instance.getStatus());

            this.validationEnabled = validationEnabled; 
    }
    public V1beta1CustomResourceSubresourcesBuilder(V1beta1CustomResourceSubresources instance){
            this(instance,true);
    }
    public V1beta1CustomResourceSubresourcesBuilder(V1beta1CustomResourceSubresources instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withScale(instance.getScale());

            this.withStatus(instance.getStatus());

            this.validationEnabled = validationEnabled; 
    }

    public V1beta1CustomResourceSubresources build(){
            V1beta1CustomResourceSubresources buildable = new V1beta1CustomResourceSubresources();
            buildable.setScale(fluent.getScale());
            buildable.setStatus(fluent.getStatus());
            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;
            V1beta1CustomResourceSubresourcesBuilder that = (V1beta1CustomResourceSubresourcesBuilder) 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