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

annotations.io.alauda.kubernetes.api.model.WeightedPodAffinityTermBuilder Maven / Gradle / Ivy

There is a newer version: 0.2.12
Show newest version
package io.alauda.kubernetes.api.model;

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

public class WeightedPodAffinityTermBuilder extends WeightedPodAffinityTermFluentImpl implements VisitableBuilder{

    WeightedPodAffinityTermFluent fluent;
    Boolean validationEnabled;

    public WeightedPodAffinityTermBuilder(){
            this(true);
    }
    public WeightedPodAffinityTermBuilder(Boolean validationEnabled){
            this(new WeightedPodAffinityTerm(), validationEnabled);
    }
    public WeightedPodAffinityTermBuilder(WeightedPodAffinityTermFluent fluent){
            this(fluent, true);
    }
    public WeightedPodAffinityTermBuilder(WeightedPodAffinityTermFluent fluent,Boolean validationEnabled){
            this(fluent, new WeightedPodAffinityTerm(), validationEnabled);
    }
    public WeightedPodAffinityTermBuilder(WeightedPodAffinityTermFluent fluent,WeightedPodAffinityTerm instance){
            this(fluent, instance, true);
    }
    public WeightedPodAffinityTermBuilder(WeightedPodAffinityTermFluent fluent,WeightedPodAffinityTerm instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withPodAffinityTerm(instance.getPodAffinityTerm()); 
            fluent.withWeight(instance.getWeight()); 
            this.validationEnabled = validationEnabled; 
    }
    public WeightedPodAffinityTermBuilder(WeightedPodAffinityTerm instance){
            this(instance,true);
    }
    public WeightedPodAffinityTermBuilder(WeightedPodAffinityTerm instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withPodAffinityTerm(instance.getPodAffinityTerm()); 
            this.withWeight(instance.getWeight()); 
            this.validationEnabled = validationEnabled; 
    }

    public WeightedPodAffinityTerm build(){
            WeightedPodAffinityTerm buildable = new WeightedPodAffinityTerm(fluent.getPodAffinityTerm(),fluent.getWeight());
            io.alauda.kubernetes.api.builder.ValidationUtils.validate(buildable);
            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;
            WeightedPodAffinityTermBuilder that = (WeightedPodAffinityTermBuilder) 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 - 2024 Weber Informatics LLC | Privacy Policy