io.kubernetes.client.openapi.models.V1alpha2ResourceClaimTemplateSpecFluent 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 V1alpha2ResourceClaimTemplateSpecFluent> extends BaseFluent{
public V1alpha2ResourceClaimTemplateSpecFluent() {
}
public V1alpha2ResourceClaimTemplateSpecFluent(V1alpha2ResourceClaimTemplateSpec instance) {
this.copyInstance(instance);
}
private V1ObjectMetaBuilder metadata;
private V1alpha2ResourceClaimSpecBuilder spec;
protected void copyInstance(V1alpha2ResourceClaimTemplateSpec instance) {
instance = (instance != null ? instance : new V1alpha2ResourceClaimTemplateSpec());
if (instance != null) {
this.withMetadata(instance.getMetadata());
this.withSpec(instance.getSpec());
}
}
public V1ObjectMeta buildMetadata() {
return this.metadata != null ? this.metadata.build() : null;
}
public A withMetadata(V1ObjectMeta metadata) {
this._visitables.remove("metadata");
if (metadata != null) {
this.metadata = new V1ObjectMetaBuilder(metadata);
this._visitables.get("metadata").add(this.metadata);
} else {
this.metadata = null;
this._visitables.get("metadata").remove(this.metadata);
}
return (A) this;
}
public boolean hasMetadata() {
return this.metadata != null;
}
public MetadataNested withNewMetadata() {
return new MetadataNested(null);
}
public MetadataNested withNewMetadataLike(V1ObjectMeta item) {
return new MetadataNested(item);
}
public MetadataNested editMetadata() {
return withNewMetadataLike(java.util.Optional.ofNullable(buildMetadata()).orElse(null));
}
public MetadataNested editOrNewMetadata() {
return withNewMetadataLike(java.util.Optional.ofNullable(buildMetadata()).orElse(new V1ObjectMetaBuilder().build()));
}
public MetadataNested editOrNewMetadataLike(V1ObjectMeta item) {
return withNewMetadataLike(java.util.Optional.ofNullable(buildMetadata()).orElse(item));
}
public V1alpha2ResourceClaimSpec buildSpec() {
return this.spec != null ? this.spec.build() : null;
}
public A withSpec(V1alpha2ResourceClaimSpec spec) {
this._visitables.remove("spec");
if (spec != null) {
this.spec = new V1alpha2ResourceClaimSpecBuilder(spec);
this._visitables.get("spec").add(this.spec);
} else {
this.spec = null;
this._visitables.get("spec").remove(this.spec);
}
return (A) this;
}
public boolean hasSpec() {
return this.spec != null;
}
public SpecNested withNewSpec() {
return new SpecNested(null);
}
public SpecNested withNewSpecLike(V1alpha2ResourceClaimSpec item) {
return new SpecNested(item);
}
public SpecNested editSpec() {
return withNewSpecLike(java.util.Optional.ofNullable(buildSpec()).orElse(null));
}
public SpecNested editOrNewSpec() {
return withNewSpecLike(java.util.Optional.ofNullable(buildSpec()).orElse(new V1alpha2ResourceClaimSpecBuilder().build()));
}
public SpecNested editOrNewSpecLike(V1alpha2ResourceClaimSpec item) {
return withNewSpecLike(java.util.Optional.ofNullable(buildSpec()).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;
V1alpha2ResourceClaimTemplateSpecFluent that = (V1alpha2ResourceClaimTemplateSpecFluent) o;
if (!java.util.Objects.equals(metadata, that.metadata)) return false;
if (!java.util.Objects.equals(spec, that.spec)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(metadata, spec, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (metadata != null) { sb.append("metadata:"); sb.append(metadata + ","); }
if (spec != null) { sb.append("spec:"); sb.append(spec); }
sb.append("}");
return sb.toString();
}
public class MetadataNested extends V1ObjectMetaFluent> implements Nested{
MetadataNested(V1ObjectMeta item) {
this.builder = new V1ObjectMetaBuilder(this, item);
}
V1ObjectMetaBuilder builder;
public N and() {
return (N) V1alpha2ResourceClaimTemplateSpecFluent.this.withMetadata(builder.build());
}
public N endMetadata() {
return and();
}
}
public class SpecNested extends V1alpha2ResourceClaimSpecFluent> implements Nested{
SpecNested(V1alpha2ResourceClaimSpec item) {
this.builder = new V1alpha2ResourceClaimSpecBuilder(this, item);
}
V1alpha2ResourceClaimSpecBuilder builder;
public N and() {
return (N) V1alpha2ResourceClaimTemplateSpecFluent.this.withSpec(builder.build());
}
public N endSpec() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy