io.kubernetes.client.openapi.models.V1VolumeAttachmentStatusFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.util.LinkedHashMap;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
import java.util.Map;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1VolumeAttachmentStatusFluent> extends BaseFluent{
public V1VolumeAttachmentStatusFluent() {
}
public V1VolumeAttachmentStatusFluent(V1VolumeAttachmentStatus instance) {
this.copyInstance(instance);
}
private V1VolumeErrorBuilder attachError;
private Boolean attached;
private Map attachmentMetadata;
private V1VolumeErrorBuilder detachError;
protected void copyInstance(V1VolumeAttachmentStatus instance) {
instance = (instance != null ? instance : new V1VolumeAttachmentStatus());
if (instance != null) {
this.withAttachError(instance.getAttachError());
this.withAttached(instance.getAttached());
this.withAttachmentMetadata(instance.getAttachmentMetadata());
this.withDetachError(instance.getDetachError());
}
}
public V1VolumeError buildAttachError() {
return this.attachError != null ? this.attachError.build() : null;
}
public A withAttachError(V1VolumeError attachError) {
this._visitables.remove("attachError");
if (attachError != null) {
this.attachError = new V1VolumeErrorBuilder(attachError);
this._visitables.get("attachError").add(this.attachError);
} else {
this.attachError = null;
this._visitables.get("attachError").remove(this.attachError);
}
return (A) this;
}
public boolean hasAttachError() {
return this.attachError != null;
}
public AttachErrorNested withNewAttachError() {
return new AttachErrorNested(null);
}
public AttachErrorNested withNewAttachErrorLike(V1VolumeError item) {
return new AttachErrorNested(item);
}
public AttachErrorNested editAttachError() {
return withNewAttachErrorLike(java.util.Optional.ofNullable(buildAttachError()).orElse(null));
}
public AttachErrorNested editOrNewAttachError() {
return withNewAttachErrorLike(java.util.Optional.ofNullable(buildAttachError()).orElse(new V1VolumeErrorBuilder().build()));
}
public AttachErrorNested editOrNewAttachErrorLike(V1VolumeError item) {
return withNewAttachErrorLike(java.util.Optional.ofNullable(buildAttachError()).orElse(item));
}
public Boolean getAttached() {
return this.attached;
}
public A withAttached(Boolean attached) {
this.attached = attached;
return (A) this;
}
public boolean hasAttached() {
return this.attached != null;
}
public A addToAttachmentMetadata(String key,String value) {
if(this.attachmentMetadata == null && key != null && value != null) { this.attachmentMetadata = new LinkedHashMap(); }
if(key != null && value != null) {this.attachmentMetadata.put(key, value);} return (A)this;
}
public A addToAttachmentMetadata(Map map) {
if(this.attachmentMetadata == null && map != null) { this.attachmentMetadata = new LinkedHashMap(); }
if(map != null) { this.attachmentMetadata.putAll(map);} return (A)this;
}
public A removeFromAttachmentMetadata(String key) {
if(this.attachmentMetadata == null) { return (A) this; }
if(key != null && this.attachmentMetadata != null) {this.attachmentMetadata.remove(key);} return (A)this;
}
public A removeFromAttachmentMetadata(Map map) {
if(this.attachmentMetadata == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.attachmentMetadata != null){this.attachmentMetadata.remove(key);}}} return (A)this;
}
public Map getAttachmentMetadata() {
return this.attachmentMetadata;
}
public A withAttachmentMetadata(Map attachmentMetadata) {
if (attachmentMetadata == null) {
this.attachmentMetadata = null;
} else {
this.attachmentMetadata = new LinkedHashMap(attachmentMetadata);
}
return (A) this;
}
public boolean hasAttachmentMetadata() {
return this.attachmentMetadata != null;
}
public V1VolumeError buildDetachError() {
return this.detachError != null ? this.detachError.build() : null;
}
public A withDetachError(V1VolumeError detachError) {
this._visitables.remove("detachError");
if (detachError != null) {
this.detachError = new V1VolumeErrorBuilder(detachError);
this._visitables.get("detachError").add(this.detachError);
} else {
this.detachError = null;
this._visitables.get("detachError").remove(this.detachError);
}
return (A) this;
}
public boolean hasDetachError() {
return this.detachError != null;
}
public DetachErrorNested withNewDetachError() {
return new DetachErrorNested(null);
}
public DetachErrorNested withNewDetachErrorLike(V1VolumeError item) {
return new DetachErrorNested(item);
}
public DetachErrorNested editDetachError() {
return withNewDetachErrorLike(java.util.Optional.ofNullable(buildDetachError()).orElse(null));
}
public DetachErrorNested editOrNewDetachError() {
return withNewDetachErrorLike(java.util.Optional.ofNullable(buildDetachError()).orElse(new V1VolumeErrorBuilder().build()));
}
public DetachErrorNested editOrNewDetachErrorLike(V1VolumeError item) {
return withNewDetachErrorLike(java.util.Optional.ofNullable(buildDetachError()).orElse(item));
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1VolumeAttachmentStatusFluent that = (V1VolumeAttachmentStatusFluent) o;
if (!java.util.Objects.equals(attachError, that.attachError)) return false;
if (!java.util.Objects.equals(attached, that.attached)) return false;
if (!java.util.Objects.equals(attachmentMetadata, that.attachmentMetadata)) return false;
if (!java.util.Objects.equals(detachError, that.detachError)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(attachError, attached, attachmentMetadata, detachError, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (attachError != null) { sb.append("attachError:"); sb.append(attachError + ","); }
if (attached != null) { sb.append("attached:"); sb.append(attached + ","); }
if (attachmentMetadata != null && !attachmentMetadata.isEmpty()) { sb.append("attachmentMetadata:"); sb.append(attachmentMetadata + ","); }
if (detachError != null) { sb.append("detachError:"); sb.append(detachError); }
sb.append("}");
return sb.toString();
}
public A withAttached() {
return withAttached(true);
}
public class AttachErrorNested extends V1VolumeErrorFluent> implements Nested{
AttachErrorNested(V1VolumeError item) {
this.builder = new V1VolumeErrorBuilder(this, item);
}
V1VolumeErrorBuilder builder;
public N and() {
return (N) V1VolumeAttachmentStatusFluent.this.withAttachError(builder.build());
}
public N endAttachError() {
return and();
}
}
public class DetachErrorNested extends V1VolumeErrorFluent> implements Nested{
DetachErrorNested(V1VolumeError item) {
this.builder = new V1VolumeErrorBuilder(this, item);
}
V1VolumeErrorBuilder builder;
public N and() {
return (N) V1VolumeAttachmentStatusFluent.this.withDetachError(builder.build());
}
public N endDetachError() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy