io.kubernetes.client.openapi.models.V1EvictionFluentImpl 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 V1EvictionFluentImpl> extends BaseFluent implements V1EvictionFluent{
public V1EvictionFluentImpl() {
}
public V1EvictionFluentImpl(V1Eviction instance) {
if (instance != null) {
this.withApiVersion(instance.getApiVersion());
this.withDeleteOptions(instance.getDeleteOptions());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
}
}
private String apiVersion;
private V1DeleteOptionsBuilder deleteOptions;
private String kind;
private V1ObjectMetaBuilder metadata;
public String getApiVersion() {
return this.apiVersion;
}
public A withApiVersion(String apiVersion) {
this.apiVersion=apiVersion; return (A) this;
}
public Boolean hasApiVersion() {
return this.apiVersion != null;
}
/**
* This method has been deprecated, please use method buildDeleteOptions instead.
* @return The buildable object.
*/
@Deprecated
public V1DeleteOptions getDeleteOptions() {
return this.deleteOptions!=null ?this.deleteOptions.build():null;
}
public V1DeleteOptions buildDeleteOptions() {
return this.deleteOptions!=null ?this.deleteOptions.build():null;
}
public A withDeleteOptions(V1DeleteOptions deleteOptions) {
_visitables.get("deleteOptions").remove(this.deleteOptions);
if (deleteOptions!=null){ this.deleteOptions= new V1DeleteOptionsBuilder(deleteOptions); _visitables.get("deleteOptions").add(this.deleteOptions);} else { this.deleteOptions = null; _visitables.get("deleteOptions").remove(this.deleteOptions); } return (A) this;
}
public Boolean hasDeleteOptions() {
return this.deleteOptions != null;
}
public V1EvictionFluentImpl.DeleteOptionsNested withNewDeleteOptions() {
return new V1EvictionFluentImpl.DeleteOptionsNestedImpl();
}
public V1EvictionFluentImpl.DeleteOptionsNested withNewDeleteOptionsLike(V1DeleteOptions item) {
return new V1EvictionFluentImpl.DeleteOptionsNestedImpl(item);
}
public V1EvictionFluentImpl.DeleteOptionsNested editDeleteOptions() {
return withNewDeleteOptionsLike(getDeleteOptions());
}
public V1EvictionFluentImpl.DeleteOptionsNested editOrNewDeleteOptions() {
return withNewDeleteOptionsLike(getDeleteOptions() != null ? getDeleteOptions(): new V1DeleteOptionsBuilder().build());
}
public V1EvictionFluentImpl.DeleteOptionsNested editOrNewDeleteOptionsLike(V1DeleteOptions item) {
return withNewDeleteOptionsLike(getDeleteOptions() != null ? getDeleteOptions(): item);
}
public String getKind() {
return this.kind;
}
public A withKind(String kind) {
this.kind=kind; return (A) this;
}
public Boolean hasKind() {
return this.kind != null;
}
/**
* 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 V1EvictionFluentImpl.MetadataNested withNewMetadata() {
return new V1EvictionFluentImpl.MetadataNestedImpl();
}
public V1EvictionFluentImpl.MetadataNested withNewMetadataLike(V1ObjectMeta item) {
return new V1EvictionFluentImpl.MetadataNestedImpl(item);
}
public V1EvictionFluentImpl.MetadataNested editMetadata() {
return withNewMetadataLike(getMetadata());
}
public V1EvictionFluentImpl.MetadataNested editOrNewMetadata() {
return withNewMetadataLike(getMetadata() != null ? getMetadata(): new V1ObjectMetaBuilder().build());
}
public V1EvictionFluentImpl.MetadataNested editOrNewMetadataLike(V1ObjectMeta item) {
return withNewMetadataLike(getMetadata() != null ? getMetadata(): 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;
V1EvictionFluentImpl that = (V1EvictionFluentImpl) o;
if (!java.util.Objects.equals(apiVersion, that.apiVersion)) return false;
if (!java.util.Objects.equals(deleteOptions, that.deleteOptions)) return false;
if (!java.util.Objects.equals(kind, that.kind)) return false;
if (!java.util.Objects.equals(metadata, that.metadata)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(apiVersion, deleteOptions, kind, metadata, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (apiVersion != null) { sb.append("apiVersion:"); sb.append(apiVersion + ","); }
if (deleteOptions != null) { sb.append("deleteOptions:"); sb.append(deleteOptions + ","); }
if (kind != null) { sb.append("kind:"); sb.append(kind + ","); }
if (metadata != null) { sb.append("metadata:"); sb.append(metadata); }
sb.append("}");
return sb.toString();
}
class DeleteOptionsNestedImpl extends V1DeleteOptionsFluentImpl> implements V1EvictionFluentImpl.DeleteOptionsNested,Nested{
DeleteOptionsNestedImpl(V1DeleteOptions item) {
this.builder = new V1DeleteOptionsBuilder(this, item);
}
DeleteOptionsNestedImpl() {
this.builder = new V1DeleteOptionsBuilder(this);
}
V1DeleteOptionsBuilder builder;
public N and() {
return (N) V1EvictionFluentImpl.this.withDeleteOptions(builder.build());
}
public N endDeleteOptions() {
return and();
}
}
class MetadataNestedImpl extends V1ObjectMetaFluentImpl> implements V1EvictionFluentImpl.MetadataNested,Nested{
MetadataNestedImpl(V1ObjectMeta item) {
this.builder = new V1ObjectMetaBuilder(this, item);
}
MetadataNestedImpl() {
this.builder = new V1ObjectMetaBuilder(this);
}
V1ObjectMetaBuilder builder;
public N and() {
return (N) V1EvictionFluentImpl.this.withMetadata(builder.build());
}
public N endMetadata() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy