io.kubernetes.client.openapi.models.V1beta1CSINodeListBuilder Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class V1beta1CSINodeListBuilder extends V1beta1CSINodeListFluentImpl implements VisitableBuilder {
V1beta1CSINodeListFluent> fluent;
Boolean validationEnabled;
public V1beta1CSINodeListBuilder() {
this(true);
}
public V1beta1CSINodeListBuilder(Boolean validationEnabled) {
this(new V1beta1CSINodeList(), validationEnabled);
}
public V1beta1CSINodeListBuilder(V1beta1CSINodeListFluent> fluent) {
this(fluent, true);
}
public V1beta1CSINodeListBuilder(V1beta1CSINodeListFluent> fluent,Boolean validationEnabled) {
this(fluent, new V1beta1CSINodeList(), validationEnabled);
}
public V1beta1CSINodeListBuilder(V1beta1CSINodeListFluent> fluent,V1beta1CSINodeList instance) {
this(fluent, instance, true);
}
public V1beta1CSINodeListBuilder(V1beta1CSINodeListFluent> fluent,V1beta1CSINodeList instance,Boolean validationEnabled) {
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withItems(instance.getItems());
fluent.withKind(instance.getKind());
fluent.withMetadata(instance.getMetadata());
this.validationEnabled = validationEnabled;
}
public V1beta1CSINodeListBuilder(V1beta1CSINodeList instance) {
this(instance,true);
}
public V1beta1CSINodeListBuilder(V1beta1CSINodeList instance,Boolean validationEnabled) {
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withItems(instance.getItems());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.validationEnabled = validationEnabled;
}
public V1beta1CSINodeList build() {
V1beta1CSINodeList buildable = new V1beta1CSINodeList();
buildable.setApiVersion(fluent.getApiVersion());
buildable.setItems(fluent.getItems());
buildable.setKind(fluent.getKind());
buildable.setMetadata(fluent.getMetadata());
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;
V1beta1CSINodeListBuilder that = (V1beta1CSINodeListBuilder) 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;
}
public int hashCode() {
return java.util.Objects.hash(fluent, validationEnabled, super.hashCode());
}
}