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

io.dekorate.halkyon.model.ComponentListBuilder Maven / Gradle / Ivy

There is a newer version: 2.0.0.beta2
Show newest version
package io.dekorate.halkyon.model;

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

public class ComponentListBuilder extends ComponentListFluentImpl implements VisitableBuilder {

    ComponentListFluent fluent;
    Boolean validationEnabled;

    public ComponentListBuilder() { 
        this(true);
    }


    public ComponentListBuilder(Boolean validationEnabled) { 
        this(new ComponentList(), validationEnabled);
    }


    public ComponentListBuilder(ComponentListFluent fluent) { 
        this(fluent, true);
    }


    public ComponentListBuilder(ComponentListFluent fluent,Boolean validationEnabled) { 
        this(fluent, new ComponentList(), validationEnabled);
    }


    public ComponentListBuilder(ComponentListFluent fluent,ComponentList instance) { 
        this(fluent, instance, true);
    }


    public ComponentListBuilder(ComponentListFluent fluent,ComponentList instance,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 ComponentListBuilder(ComponentList instance) { 
        this(instance,true);
    }


    public ComponentListBuilder(ComponentList instance,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 ComponentList build() {
        ComponentList buildable = new ComponentList(fluent.getApiVersion(),fluent.getItems(),fluent.getKind(),fluent.getMetadata());
        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;
        ComponentListBuilder that = (ComponentListBuilder) 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