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

annotations.io.fabric8.knative.internal.pkg.apis.ConditionBuilder Maven / Gradle / Ivy

package io.fabric8.knative.internal.pkg.apis;

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

public class ConditionBuilder extends io.fabric8.knative.internal.pkg.apis.ConditionFluentImpl implements io.fabric8.kubernetes.api.builder.VisitableBuilder {

    io.fabric8.knative.internal.pkg.apis.ConditionFluent fluent;
    java.lang.Boolean validationEnabled;

    public ConditionBuilder() {
        this(true);
    }

    public ConditionBuilder(java.lang.Boolean validationEnabled) {
        this(new Condition(), validationEnabled);
    }

    public ConditionBuilder(io.fabric8.knative.internal.pkg.apis.ConditionFluent fluent) {
        this(fluent, true);
    }

    public ConditionBuilder(io.fabric8.knative.internal.pkg.apis.ConditionFluent fluent,java.lang.Boolean validationEnabled) {
        this(fluent, new Condition(), validationEnabled);
    }

    public ConditionBuilder(io.fabric8.knative.internal.pkg.apis.ConditionFluent fluent,io.fabric8.knative.internal.pkg.apis.Condition instance) {
        this(fluent, instance, true);
    }

    public ConditionBuilder(io.fabric8.knative.internal.pkg.apis.ConditionFluent fluent,io.fabric8.knative.internal.pkg.apis.Condition instance,java.lang.Boolean validationEnabled) {
        this.fluent = fluent; 
        fluent.withLastTransitionTime(instance.getLastTransitionTime()); 
        fluent.withMessage(instance.getMessage()); 
        fluent.withReason(instance.getReason()); 
        fluent.withSeverity(instance.getSeverity()); 
        fluent.withStatus(instance.getStatus()); 
        fluent.withType(instance.getType()); 
        this.validationEnabled = validationEnabled; 
    }

    public ConditionBuilder(io.fabric8.knative.internal.pkg.apis.Condition instance) {
        this(instance,true);
    }

    public ConditionBuilder(io.fabric8.knative.internal.pkg.apis.Condition instance,java.lang.Boolean validationEnabled) {
        this.fluent = this; 
        this.withLastTransitionTime(instance.getLastTransitionTime()); 
        this.withMessage(instance.getMessage()); 
        this.withReason(instance.getReason()); 
        this.withSeverity(instance.getSeverity()); 
        this.withStatus(instance.getStatus()); 
        this.withType(instance.getType()); 
        this.validationEnabled = validationEnabled; 
    }

    public io.fabric8.knative.internal.pkg.apis.EditableCondition build() {
        EditableCondition buildable = new EditableCondition(fluent.getLastTransitionTime(),fluent.getMessage(),fluent.getReason(),fluent.getSeverity(),fluent.getStatus(),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;
        ConditionBuilder that = (ConditionBuilder) 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