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

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

package io.kubernetes.client.models;

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

public class V1PersistentVolumeClaimConditionBuilder extends V1PersistentVolumeClaimConditionFluentImpl implements VisitableBuilder{

    V1PersistentVolumeClaimConditionFluent fluent;
    Boolean validationEnabled;

    public V1PersistentVolumeClaimConditionBuilder(){
            this(true);
    }
    public V1PersistentVolumeClaimConditionBuilder(Boolean validationEnabled){
            this(new V1PersistentVolumeClaimCondition(), validationEnabled);
    }
    public V1PersistentVolumeClaimConditionBuilder(V1PersistentVolumeClaimConditionFluent fluent){
            this(fluent, true);
    }
    public V1PersistentVolumeClaimConditionBuilder(V1PersistentVolumeClaimConditionFluent fluent,Boolean validationEnabled){
            this(fluent, new V1PersistentVolumeClaimCondition(), validationEnabled);
    }
    public V1PersistentVolumeClaimConditionBuilder(V1PersistentVolumeClaimConditionFluent fluent,V1PersistentVolumeClaimCondition instance){
            this(fluent, instance, true);
    }
    public V1PersistentVolumeClaimConditionBuilder(V1PersistentVolumeClaimConditionFluent fluent,V1PersistentVolumeClaimCondition instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withLastProbeTime(instance.getLastProbeTime());

            fluent.withLastTransitionTime(instance.getLastTransitionTime());

            fluent.withMessage(instance.getMessage());

            fluent.withReason(instance.getReason());

            fluent.withStatus(instance.getStatus());

            fluent.withType(instance.getType());

            this.validationEnabled = validationEnabled; 
    }
    public V1PersistentVolumeClaimConditionBuilder(V1PersistentVolumeClaimCondition instance){
            this(instance,true);
    }
    public V1PersistentVolumeClaimConditionBuilder(V1PersistentVolumeClaimCondition instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withLastProbeTime(instance.getLastProbeTime());

            this.withLastTransitionTime(instance.getLastTransitionTime());

            this.withMessage(instance.getMessage());

            this.withReason(instance.getReason());

            this.withStatus(instance.getStatus());

            this.withType(instance.getType());

            this.validationEnabled = validationEnabled; 
    }

    public V1PersistentVolumeClaimCondition build(){
            V1PersistentVolumeClaimCondition buildable = new V1PersistentVolumeClaimCondition();
            buildable.setLastProbeTime(fluent.getLastProbeTime());
            buildable.setLastTransitionTime(fluent.getLastTransitionTime());
            buildable.setMessage(fluent.getMessage());
            buildable.setReason(fluent.getReason());
            buildable.setStatus(fluent.getStatus());
            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;
            V1PersistentVolumeClaimConditionBuilder that = (V1PersistentVolumeClaimConditionBuilder) 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