annotations.io.alauda.kubernetes.api.model.I18nNameBuilder Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import io.alauda.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class I18nNameBuilder extends I18nNameFluentImpl implements VisitableBuilder{
I18nNameFluent> fluent;
Boolean validationEnabled;
public I18nNameBuilder(){
this(true);
}
public I18nNameBuilder(Boolean validationEnabled){
this(new I18nName(), validationEnabled);
}
public I18nNameBuilder(I18nNameFluent> fluent){
this(fluent, true);
}
public I18nNameBuilder(I18nNameFluent> fluent,Boolean validationEnabled){
this(fluent, new I18nName(), validationEnabled);
}
public I18nNameBuilder(I18nNameFluent> fluent,I18nName instance){
this(fluent, instance, true);
}
public I18nNameBuilder(I18nNameFluent> fluent,I18nName instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withEn(instance.getEn());
fluent.withZhCN(instance.getZhCN());
this.validationEnabled = validationEnabled;
}
public I18nNameBuilder(I18nName instance){
this(instance,true);
}
public I18nNameBuilder(I18nName instance,Boolean validationEnabled){
this.fluent = this;
this.withEn(instance.getEn());
this.withZhCN(instance.getZhCN());
this.validationEnabled = validationEnabled;
}
public I18nName build(){
I18nName buildable = new I18nName(fluent.getEn(),fluent.getZhCN());
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;
I18nNameBuilder that = (I18nNameBuilder) 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;
}
}