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

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

package io.kubernetes.client.models;

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

public class V1StatusDetailsBuilder extends V1StatusDetailsFluentImpl implements VisitableBuilder{

    V1StatusDetailsFluent fluent;
    Boolean validationEnabled;

    public V1StatusDetailsBuilder(){
            this(true);
    }
    public V1StatusDetailsBuilder(Boolean validationEnabled){
            this(new V1StatusDetails(), validationEnabled);
    }
    public V1StatusDetailsBuilder(V1StatusDetailsFluent fluent){
            this(fluent, true);
    }
    public V1StatusDetailsBuilder(V1StatusDetailsFluent fluent,Boolean validationEnabled){
            this(fluent, new V1StatusDetails(), validationEnabled);
    }
    public V1StatusDetailsBuilder(V1StatusDetailsFluent fluent,V1StatusDetails instance){
            this(fluent, instance, true);
    }
    public V1StatusDetailsBuilder(V1StatusDetailsFluent fluent,V1StatusDetails instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withCauses(instance.getCauses());

            fluent.withGroup(instance.getGroup());

            fluent.withKind(instance.getKind());

            fluent.withName(instance.getName());

            fluent.withRetryAfterSeconds(instance.getRetryAfterSeconds());

            fluent.withUid(instance.getUid());

            this.validationEnabled = validationEnabled; 
    }
    public V1StatusDetailsBuilder(V1StatusDetails instance){
            this(instance,true);
    }
    public V1StatusDetailsBuilder(V1StatusDetails instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withCauses(instance.getCauses());

            this.withGroup(instance.getGroup());

            this.withKind(instance.getKind());

            this.withName(instance.getName());

            this.withRetryAfterSeconds(instance.getRetryAfterSeconds());

            this.withUid(instance.getUid());

            this.validationEnabled = validationEnabled; 
    }

    public V1StatusDetails build(){
            V1StatusDetails buildable = new V1StatusDetails();
            buildable.setCauses(fluent.getCauses());
            buildable.setGroup(fluent.getGroup());
            buildable.setKind(fluent.getKind());
            buildable.setName(fluent.getName());
            buildable.setRetryAfterSeconds(fluent.getRetryAfterSeconds());
            buildable.setUid(fluent.getUid());
            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;
            V1StatusDetailsBuilder that = (V1StatusDetailsBuilder) 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