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

io.alauda.kubernetes.api.model.ConfigMapKeySelectorBuilder 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 ConfigMapKeySelectorBuilder extends ConfigMapKeySelectorFluentImpl implements VisitableBuilder{

    ConfigMapKeySelectorFluent fluent;
    Boolean validationEnabled;

    public ConfigMapKeySelectorBuilder(){
            this(true);
    }
    public ConfigMapKeySelectorBuilder(Boolean validationEnabled){
            this(new ConfigMapKeySelector(), validationEnabled);
    }
    public ConfigMapKeySelectorBuilder(ConfigMapKeySelectorFluent fluent){
            this(fluent, true);
    }
    public ConfigMapKeySelectorBuilder(ConfigMapKeySelectorFluent fluent,Boolean validationEnabled){
            this(fluent, new ConfigMapKeySelector(), validationEnabled);
    }
    public ConfigMapKeySelectorBuilder(ConfigMapKeySelectorFluent fluent,ConfigMapKeySelector instance){
            this(fluent, instance, true);
    }
    public ConfigMapKeySelectorBuilder(ConfigMapKeySelectorFluent fluent,ConfigMapKeySelector instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withKey(instance.getKey()); 
            fluent.withName(instance.getName()); 
            fluent.withOptional(instance.getOptional()); 
            this.validationEnabled = validationEnabled; 
    }
    public ConfigMapKeySelectorBuilder(ConfigMapKeySelector instance){
            this(instance,true);
    }
    public ConfigMapKeySelectorBuilder(ConfigMapKeySelector instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withKey(instance.getKey()); 
            this.withName(instance.getName()); 
            this.withOptional(instance.getOptional()); 
            this.validationEnabled = validationEnabled; 
    }

    public ConfigMapKeySelector build(){
            ConfigMapKeySelector buildable = new ConfigMapKeySelector(fluent.getKey(),fluent.getName(),fluent.isOptional());
            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;
            ConfigMapKeySelectorBuilder that = (ConfigMapKeySelectorBuilder) 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