annotations.io.alauda.kubernetes.api.model.AWSElasticBlockStoreVolumeSourceBuilder 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 AWSElasticBlockStoreVolumeSourceBuilder extends AWSElasticBlockStoreVolumeSourceFluentImpl implements VisitableBuilder{
AWSElasticBlockStoreVolumeSourceFluent> fluent;
Boolean validationEnabled;
public AWSElasticBlockStoreVolumeSourceBuilder(){
this(true);
}
public AWSElasticBlockStoreVolumeSourceBuilder(Boolean validationEnabled){
this(new AWSElasticBlockStoreVolumeSource(), validationEnabled);
}
public AWSElasticBlockStoreVolumeSourceBuilder(AWSElasticBlockStoreVolumeSourceFluent> fluent){
this(fluent, true);
}
public AWSElasticBlockStoreVolumeSourceBuilder(AWSElasticBlockStoreVolumeSourceFluent> fluent,Boolean validationEnabled){
this(fluent, new AWSElasticBlockStoreVolumeSource(), validationEnabled);
}
public AWSElasticBlockStoreVolumeSourceBuilder(AWSElasticBlockStoreVolumeSourceFluent> fluent,AWSElasticBlockStoreVolumeSource instance){
this(fluent, instance, true);
}
public AWSElasticBlockStoreVolumeSourceBuilder(AWSElasticBlockStoreVolumeSourceFluent> fluent,AWSElasticBlockStoreVolumeSource instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withFsType(instance.getFsType());
fluent.withPartition(instance.getPartition());
fluent.withReadOnly(instance.getReadOnly());
fluent.withVolumeID(instance.getVolumeID());
this.validationEnabled = validationEnabled;
}
public AWSElasticBlockStoreVolumeSourceBuilder(AWSElasticBlockStoreVolumeSource instance){
this(instance,true);
}
public AWSElasticBlockStoreVolumeSourceBuilder(AWSElasticBlockStoreVolumeSource instance,Boolean validationEnabled){
this.fluent = this;
this.withFsType(instance.getFsType());
this.withPartition(instance.getPartition());
this.withReadOnly(instance.getReadOnly());
this.withVolumeID(instance.getVolumeID());
this.validationEnabled = validationEnabled;
}
public AWSElasticBlockStoreVolumeSource build(){
AWSElasticBlockStoreVolumeSource buildable = new AWSElasticBlockStoreVolumeSource(fluent.getFsType(),fluent.getPartition(),fluent.isReadOnly(),fluent.getVolumeID());
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;
AWSElasticBlockStoreVolumeSourceBuilder that = (AWSElasticBlockStoreVolumeSourceBuilder) 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;
}
}