io.kubernetes.client.openapi.models.V1PodTemplateSpecFluentImpl 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.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class V1PodTemplateSpecFluentImpl> extends BaseFluent implements V1PodTemplateSpecFluent{
public V1PodTemplateSpecFluentImpl() {
}
public V1PodTemplateSpecFluentImpl(V1PodTemplateSpec instance) {
if (instance != null) {
this.withMetadata(instance.getMetadata());
this.withSpec(instance.getSpec());
}
}
private V1ObjectMetaBuilder metadata;
private V1PodSpecBuilder spec;
/**
* This method has been deprecated, please use method buildMetadata instead.
* @return The buildable object.
*/
@Deprecated
public V1ObjectMeta getMetadata() {
return this.metadata!=null ?this.metadata.build():null;
}
public V1ObjectMeta buildMetadata() {
return this.metadata!=null ?this.metadata.build():null;
}
public A withMetadata(V1ObjectMeta metadata) {
_visitables.get("metadata").remove(this.metadata);
if (metadata!=null){ this.metadata= new V1ObjectMetaBuilder(metadata); _visitables.get("metadata").add(this.metadata);} else { this.metadata = null; _visitables.get("metadata").remove(this.metadata); } return (A) this;
}
public Boolean hasMetadata() {
return this.metadata != null;
}
public V1PodTemplateSpecFluentImpl.MetadataNested withNewMetadata() {
return new V1PodTemplateSpecFluentImpl.MetadataNestedImpl();
}
public V1PodTemplateSpecFluentImpl.MetadataNested withNewMetadataLike(V1ObjectMeta item) {
return new V1PodTemplateSpecFluentImpl.MetadataNestedImpl(item);
}
public V1PodTemplateSpecFluentImpl.MetadataNested editMetadata() {
return withNewMetadataLike(getMetadata());
}
public V1PodTemplateSpecFluentImpl.MetadataNested editOrNewMetadata() {
return withNewMetadataLike(getMetadata() != null ? getMetadata(): new V1ObjectMetaBuilder().build());
}
public V1PodTemplateSpecFluentImpl.MetadataNested editOrNewMetadataLike(V1ObjectMeta item) {
return withNewMetadataLike(getMetadata() != null ? getMetadata(): item);
}
/**
* This method has been deprecated, please use method buildSpec instead.
* @return The buildable object.
*/
@Deprecated
public V1PodSpec getSpec() {
return this.spec!=null ?this.spec.build():null;
}
public V1PodSpec buildSpec() {
return this.spec!=null ?this.spec.build():null;
}
public A withSpec(V1PodSpec spec) {
_visitables.get("spec").remove(this.spec);
if (spec!=null){ this.spec= new V1PodSpecBuilder(spec); _visitables.get("spec").add(this.spec);} else { this.spec = null; _visitables.get("spec").remove(this.spec); } return (A) this;
}
public Boolean hasSpec() {
return this.spec != null;
}
public V1PodTemplateSpecFluentImpl.SpecNested withNewSpec() {
return new V1PodTemplateSpecFluentImpl.SpecNestedImpl();
}
public V1PodTemplateSpecFluentImpl.SpecNested withNewSpecLike(V1PodSpec item) {
return new V1PodTemplateSpecFluentImpl.SpecNestedImpl(item);
}
public V1PodTemplateSpecFluentImpl.SpecNested editSpec() {
return withNewSpecLike(getSpec());
}
public V1PodTemplateSpecFluentImpl.SpecNested editOrNewSpec() {
return withNewSpecLike(getSpec() != null ? getSpec(): new V1PodSpecBuilder().build());
}
public V1PodTemplateSpecFluentImpl.SpecNested editOrNewSpecLike(V1PodSpec item) {
return withNewSpecLike(getSpec() != null ? getSpec(): 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;
V1PodTemplateSpecFluentImpl that = (V1PodTemplateSpecFluentImpl) 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();
}
class MetadataNestedImpl extends V1ObjectMetaFluentImpl> implements V1PodTemplateSpecFluentImpl.MetadataNested,Nested{
MetadataNestedImpl(V1ObjectMeta item) {
this.builder = new V1ObjectMetaBuilder(this, item);
}
MetadataNestedImpl() {
this.builder = new V1ObjectMetaBuilder(this);
}
V1ObjectMetaBuilder builder;
public N and() {
return (N) V1PodTemplateSpecFluentImpl.this.withMetadata(builder.build());
}
public N endMetadata() {
return and();
}
}
class SpecNestedImpl extends V1PodSpecFluentImpl> implements V1PodTemplateSpecFluentImpl.SpecNested,Nested{
SpecNestedImpl(V1PodSpec item) {
this.builder = new V1PodSpecBuilder(this, item);
}
SpecNestedImpl() {
this.builder = new V1PodSpecBuilder(this);
}
V1PodSpecBuilder builder;
public N and() {
return (N) V1PodTemplateSpecFluentImpl.this.withSpec(builder.build());
}
public N endSpec() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy