io.kubernetes.client.openapi.models.V1NodeConfigStatusFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1NodeConfigStatusFluent> extends BaseFluent{
public V1NodeConfigStatusFluent() {
}
public V1NodeConfigStatusFluent(V1NodeConfigStatus instance) {
this.copyInstance(instance);
}
private V1NodeConfigSourceBuilder active;
private V1NodeConfigSourceBuilder assigned;
private String error;
private V1NodeConfigSourceBuilder lastKnownGood;
protected void copyInstance(V1NodeConfigStatus instance) {
instance = (instance != null ? instance : new V1NodeConfigStatus());
if (instance != null) {
this.withActive(instance.getActive());
this.withAssigned(instance.getAssigned());
this.withError(instance.getError());
this.withLastKnownGood(instance.getLastKnownGood());
}
}
public V1NodeConfigSource buildActive() {
return this.active != null ? this.active.build() : null;
}
public A withActive(V1NodeConfigSource active) {
this._visitables.remove("active");
if (active != null) {
this.active = new V1NodeConfigSourceBuilder(active);
this._visitables.get("active").add(this.active);
} else {
this.active = null;
this._visitables.get("active").remove(this.active);
}
return (A) this;
}
public boolean hasActive() {
return this.active != null;
}
public ActiveNested withNewActive() {
return new ActiveNested(null);
}
public ActiveNested withNewActiveLike(V1NodeConfigSource item) {
return new ActiveNested(item);
}
public ActiveNested editActive() {
return withNewActiveLike(java.util.Optional.ofNullable(buildActive()).orElse(null));
}
public ActiveNested editOrNewActive() {
return withNewActiveLike(java.util.Optional.ofNullable(buildActive()).orElse(new V1NodeConfigSourceBuilder().build()));
}
public ActiveNested editOrNewActiveLike(V1NodeConfigSource item) {
return withNewActiveLike(java.util.Optional.ofNullable(buildActive()).orElse(item));
}
public V1NodeConfigSource buildAssigned() {
return this.assigned != null ? this.assigned.build() : null;
}
public A withAssigned(V1NodeConfigSource assigned) {
this._visitables.remove("assigned");
if (assigned != null) {
this.assigned = new V1NodeConfigSourceBuilder(assigned);
this._visitables.get("assigned").add(this.assigned);
} else {
this.assigned = null;
this._visitables.get("assigned").remove(this.assigned);
}
return (A) this;
}
public boolean hasAssigned() {
return this.assigned != null;
}
public AssignedNested withNewAssigned() {
return new AssignedNested(null);
}
public AssignedNested withNewAssignedLike(V1NodeConfigSource item) {
return new AssignedNested(item);
}
public AssignedNested editAssigned() {
return withNewAssignedLike(java.util.Optional.ofNullable(buildAssigned()).orElse(null));
}
public AssignedNested editOrNewAssigned() {
return withNewAssignedLike(java.util.Optional.ofNullable(buildAssigned()).orElse(new V1NodeConfigSourceBuilder().build()));
}
public AssignedNested editOrNewAssignedLike(V1NodeConfigSource item) {
return withNewAssignedLike(java.util.Optional.ofNullable(buildAssigned()).orElse(item));
}
public String getError() {
return this.error;
}
public A withError(String error) {
this.error = error;
return (A) this;
}
public boolean hasError() {
return this.error != null;
}
public V1NodeConfigSource buildLastKnownGood() {
return this.lastKnownGood != null ? this.lastKnownGood.build() : null;
}
public A withLastKnownGood(V1NodeConfigSource lastKnownGood) {
this._visitables.remove("lastKnownGood");
if (lastKnownGood != null) {
this.lastKnownGood = new V1NodeConfigSourceBuilder(lastKnownGood);
this._visitables.get("lastKnownGood").add(this.lastKnownGood);
} else {
this.lastKnownGood = null;
this._visitables.get("lastKnownGood").remove(this.lastKnownGood);
}
return (A) this;
}
public boolean hasLastKnownGood() {
return this.lastKnownGood != null;
}
public LastKnownGoodNested withNewLastKnownGood() {
return new LastKnownGoodNested(null);
}
public LastKnownGoodNested withNewLastKnownGoodLike(V1NodeConfigSource item) {
return new LastKnownGoodNested(item);
}
public LastKnownGoodNested editLastKnownGood() {
return withNewLastKnownGoodLike(java.util.Optional.ofNullable(buildLastKnownGood()).orElse(null));
}
public LastKnownGoodNested editOrNewLastKnownGood() {
return withNewLastKnownGoodLike(java.util.Optional.ofNullable(buildLastKnownGood()).orElse(new V1NodeConfigSourceBuilder().build()));
}
public LastKnownGoodNested editOrNewLastKnownGoodLike(V1NodeConfigSource item) {
return withNewLastKnownGoodLike(java.util.Optional.ofNullable(buildLastKnownGood()).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;
V1NodeConfigStatusFluent that = (V1NodeConfigStatusFluent) o;
if (!java.util.Objects.equals(active, that.active)) return false;
if (!java.util.Objects.equals(assigned, that.assigned)) return false;
if (!java.util.Objects.equals(error, that.error)) return false;
if (!java.util.Objects.equals(lastKnownGood, that.lastKnownGood)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(active, assigned, error, lastKnownGood, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (active != null) { sb.append("active:"); sb.append(active + ","); }
if (assigned != null) { sb.append("assigned:"); sb.append(assigned + ","); }
if (error != null) { sb.append("error:"); sb.append(error + ","); }
if (lastKnownGood != null) { sb.append("lastKnownGood:"); sb.append(lastKnownGood); }
sb.append("}");
return sb.toString();
}
public class ActiveNested extends V1NodeConfigSourceFluent> implements Nested{
ActiveNested(V1NodeConfigSource item) {
this.builder = new V1NodeConfigSourceBuilder(this, item);
}
V1NodeConfigSourceBuilder builder;
public N and() {
return (N) V1NodeConfigStatusFluent.this.withActive(builder.build());
}
public N endActive() {
return and();
}
}
public class AssignedNested extends V1NodeConfigSourceFluent> implements Nested{
AssignedNested(V1NodeConfigSource item) {
this.builder = new V1NodeConfigSourceBuilder(this, item);
}
V1NodeConfigSourceBuilder builder;
public N and() {
return (N) V1NodeConfigStatusFluent.this.withAssigned(builder.build());
}
public N endAssigned() {
return and();
}
}
public class LastKnownGoodNested extends V1NodeConfigSourceFluent> implements Nested{
LastKnownGoodNested(V1NodeConfigSource item) {
this.builder = new V1NodeConfigSourceBuilder(this, item);
}
V1NodeConfigSourceBuilder builder;
public N and() {
return (N) V1NodeConfigStatusFluent.this.withLastKnownGood(builder.build());
}
public N endLastKnownGood() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy