io.kubernetes.client.openapi.models.V1VolumeAttachmentSpecFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.BaseFluent;
import io.kubernetes.client.fluent.Nested;
import java.lang.Object;
import java.lang.String;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1VolumeAttachmentSpecFluent> extends BaseFluent{
public V1VolumeAttachmentSpecFluent() {
}
public V1VolumeAttachmentSpecFluent(V1VolumeAttachmentSpec instance) {
this.copyInstance(instance);
}
private String attacher;
private String nodeName;
private V1VolumeAttachmentSourceBuilder source;
protected void copyInstance(V1VolumeAttachmentSpec instance) {
instance = (instance != null ? instance : new V1VolumeAttachmentSpec());
if (instance != null) {
this.withAttacher(instance.getAttacher());
this.withNodeName(instance.getNodeName());
this.withSource(instance.getSource());
}
}
public String getAttacher() {
return this.attacher;
}
public A withAttacher(String attacher) {
this.attacher = attacher;
return (A) this;
}
public boolean hasAttacher() {
return this.attacher != null;
}
public String getNodeName() {
return this.nodeName;
}
public A withNodeName(String nodeName) {
this.nodeName = nodeName;
return (A) this;
}
public boolean hasNodeName() {
return this.nodeName != null;
}
public V1VolumeAttachmentSource buildSource() {
return this.source != null ? this.source.build() : null;
}
public A withSource(V1VolumeAttachmentSource source) {
this._visitables.remove("source");
if (source != null) {
this.source = new V1VolumeAttachmentSourceBuilder(source);
this._visitables.get("source").add(this.source);
} else {
this.source = null;
this._visitables.get("source").remove(this.source);
}
return (A) this;
}
public boolean hasSource() {
return this.source != null;
}
public SourceNested withNewSource() {
return new SourceNested(null);
}
public SourceNested withNewSourceLike(V1VolumeAttachmentSource item) {
return new SourceNested(item);
}
public SourceNested editSource() {
return withNewSourceLike(java.util.Optional.ofNullable(buildSource()).orElse(null));
}
public SourceNested editOrNewSource() {
return withNewSourceLike(java.util.Optional.ofNullable(buildSource()).orElse(new V1VolumeAttachmentSourceBuilder().build()));
}
public SourceNested editOrNewSourceLike(V1VolumeAttachmentSource item) {
return withNewSourceLike(java.util.Optional.ofNullable(buildSource()).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;
V1VolumeAttachmentSpecFluent that = (V1VolumeAttachmentSpecFluent) o;
if (!java.util.Objects.equals(attacher, that.attacher)) return false;
if (!java.util.Objects.equals(nodeName, that.nodeName)) return false;
if (!java.util.Objects.equals(source, that.source)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(attacher, nodeName, source, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (attacher != null) { sb.append("attacher:"); sb.append(attacher + ","); }
if (nodeName != null) { sb.append("nodeName:"); sb.append(nodeName + ","); }
if (source != null) { sb.append("source:"); sb.append(source); }
sb.append("}");
return sb.toString();
}
public class SourceNested extends V1VolumeAttachmentSourceFluent> implements Nested{
SourceNested(V1VolumeAttachmentSource item) {
this.builder = new V1VolumeAttachmentSourceBuilder(this, item);
}
V1VolumeAttachmentSourceBuilder builder;
public N and() {
return (N) V1VolumeAttachmentSpecFluent.this.withSource(builder.build());
}
public N endSource() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy