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

io.fabric8.knative.sources.v1.ContainerSourceListBuilder Maven / Gradle / Ivy

package io.fabric8.knative.sources.v1;

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

public class ContainerSourceListBuilder extends io.fabric8.knative.sources.v1.ContainerSourceListFluentImpl implements io.fabric8.kubernetes.api.builder.VisitableBuilder {

    io.fabric8.knative.sources.v1.ContainerSourceListFluent fluent;
    java.lang.Boolean validationEnabled;

    public ContainerSourceListBuilder() {
        this(true);
    }

    public ContainerSourceListBuilder(java.lang.Boolean validationEnabled) {
        this(new ContainerSourceList(), validationEnabled);
    }

    public ContainerSourceListBuilder(io.fabric8.knative.sources.v1.ContainerSourceListFluent fluent) {
        this(fluent, true);
    }

    public ContainerSourceListBuilder(io.fabric8.knative.sources.v1.ContainerSourceListFluent fluent,java.lang.Boolean validationEnabled) {
        this(fluent, new ContainerSourceList(), validationEnabled);
    }

    public ContainerSourceListBuilder(io.fabric8.knative.sources.v1.ContainerSourceListFluent fluent,io.fabric8.knative.sources.v1.ContainerSourceList instance) {
        this(fluent, instance, true);
    }

    public ContainerSourceListBuilder(io.fabric8.knative.sources.v1.ContainerSourceListFluent fluent,io.fabric8.knative.sources.v1.ContainerSourceList 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 ContainerSourceListBuilder(io.fabric8.knative.sources.v1.ContainerSourceList instance) {
        this(instance,true);
    }

    public ContainerSourceListBuilder(io.fabric8.knative.sources.v1.ContainerSourceList 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.sources.v1.EditableContainerSourceList build() {
        EditableContainerSourceList buildable = new EditableContainerSourceList(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;
        ContainerSourceListBuilder that = (ContainerSourceListBuilder) 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