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

io.fabric8.knative.serving.v1.RevisionListBuilder Maven / Gradle / Ivy

package io.fabric8.knative.serving.v1;

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

public class RevisionListBuilder extends io.fabric8.knative.serving.v1.RevisionListFluentImpl implements io.fabric8.kubernetes.api.builder.VisitableBuilder {

    io.fabric8.knative.serving.v1.RevisionListFluent fluent;
    java.lang.Boolean validationEnabled;

    public RevisionListBuilder() {
        this(true);
    }

    public RevisionListBuilder(java.lang.Boolean validationEnabled) {
        this(new RevisionList(), validationEnabled);
    }

    public RevisionListBuilder(io.fabric8.knative.serving.v1.RevisionListFluent fluent) {
        this(fluent, true);
    }

    public RevisionListBuilder(io.fabric8.knative.serving.v1.RevisionListFluent fluent,java.lang.Boolean validationEnabled) {
        this(fluent, new RevisionList(), validationEnabled);
    }

    public RevisionListBuilder(io.fabric8.knative.serving.v1.RevisionListFluent fluent,io.fabric8.knative.serving.v1.RevisionList instance) {
        this(fluent, instance, true);
    }

    public RevisionListBuilder(io.fabric8.knative.serving.v1.RevisionListFluent fluent,io.fabric8.knative.serving.v1.RevisionList instance,java.lang.Boolean validationEnabled) {
        this.fluent = fluent; 
        fluent.withApiVersion(instance.getApiVersion()); 
        fluent.withItems(instance.getItems()); 
        fluent.withKind(instance.getKind()); 
        fluent.withMetadata(instance.getMetadata()); 
        this.validationEnabled = validationEnabled; 
    }

    public RevisionListBuilder(io.fabric8.knative.serving.v1.RevisionList instance) {
        this(instance,true);
    }

    public RevisionListBuilder(io.fabric8.knative.serving.v1.RevisionList instance,java.lang.Boolean validationEnabled) {
        this.fluent = this; 
        this.withApiVersion(instance.getApiVersion()); 
        this.withItems(instance.getItems()); 
        this.withKind(instance.getKind()); 
        this.withMetadata(instance.getMetadata()); 
        this.validationEnabled = validationEnabled; 
    }

    public io.fabric8.knative.serving.v1.EditableRevisionList build() {
        EditableRevisionList buildable = new EditableRevisionList(fluent.getApiVersion(),fluent.getItems(),fluent.getKind(),fluent.getMetadata());
        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;
        RevisionListBuilder that = (RevisionListBuilder) 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