annotations.io.alauda.kubernetes.api.model.LocalVolumeSourceBuilder 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 LocalVolumeSourceBuilder extends LocalVolumeSourceFluentImpl implements VisitableBuilder{
LocalVolumeSourceFluent> fluent;
Boolean validationEnabled;
public LocalVolumeSourceBuilder(){
this(true);
}
public LocalVolumeSourceBuilder(Boolean validationEnabled){
this(new LocalVolumeSource(), validationEnabled);
}
public LocalVolumeSourceBuilder(LocalVolumeSourceFluent> fluent){
this(fluent, true);
}
public LocalVolumeSourceBuilder(LocalVolumeSourceFluent> fluent,Boolean validationEnabled){
this(fluent, new LocalVolumeSource(), validationEnabled);
}
public LocalVolumeSourceBuilder(LocalVolumeSourceFluent> fluent,LocalVolumeSource instance){
this(fluent, instance, true);
}
public LocalVolumeSourceBuilder(LocalVolumeSourceFluent> fluent,LocalVolumeSource instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withPath(instance.getPath());
this.validationEnabled = validationEnabled;
}
public LocalVolumeSourceBuilder(LocalVolumeSource instance){
this(instance,true);
}
public LocalVolumeSourceBuilder(LocalVolumeSource instance,Boolean validationEnabled){
this.fluent = this;
this.withPath(instance.getPath());
this.validationEnabled = validationEnabled;
}
public LocalVolumeSource build(){
LocalVolumeSource buildable = new LocalVolumeSource(fluent.getPath());
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;
LocalVolumeSourceBuilder that = (LocalVolumeSourceBuilder) 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;
}
}