io.kubernetes.client.openapi.models.V1ControllerRevisionFluent 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.Long;
import java.lang.Object;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1ControllerRevisionFluent> extends BaseFluent{
public V1ControllerRevisionFluent() {
}
public V1ControllerRevisionFluent(V1ControllerRevision instance) {
this.copyInstance(instance);
}
private String apiVersion;
private Object data;
private String kind;
private V1ObjectMetaBuilder metadata;
private Long revision;
protected void copyInstance(V1ControllerRevision instance) {
instance = (instance != null ? instance : new V1ControllerRevision());
if (instance != null) {
this.withApiVersion(instance.getApiVersion());
this.withData(instance.getData());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.withRevision(instance.getRevision());
}
}
public String getApiVersion() {
return this.apiVersion;
}
public A withApiVersion(String apiVersion) {
this.apiVersion = apiVersion;
return (A) this;
}
public boolean hasApiVersion() {
return this.apiVersion != null;
}
public Object getData() {
return this.data;
}
public A withData(Object data) {
this.data = data;
return (A) this;
}
public boolean hasData() {
return this.data != null;
}
public String getKind() {
return this.kind;
}
public A withKind(String kind) {
this.kind = kind;
return (A) this;
}
public boolean hasKind() {
return this.kind != null;
}
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 Long getRevision() {
return this.revision;
}
public A withRevision(Long revision) {
this.revision = revision;
return (A) this;
}
public boolean hasRevision() {
return this.revision != null;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1ControllerRevisionFluent that = (V1ControllerRevisionFluent) o;
if (!java.util.Objects.equals(apiVersion, that.apiVersion)) return false;
if (!java.util.Objects.equals(data, that.data)) return false;
if (!java.util.Objects.equals(kind, that.kind)) return false;
if (!java.util.Objects.equals(metadata, that.metadata)) return false;
if (!java.util.Objects.equals(revision, that.revision)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(apiVersion, data, kind, metadata, revision, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (apiVersion != null) { sb.append("apiVersion:"); sb.append(apiVersion + ","); }
if (data != null) { sb.append("data:"); sb.append(data + ","); }
if (kind != null) { sb.append("kind:"); sb.append(kind + ","); }
if (metadata != null) { sb.append("metadata:"); sb.append(metadata + ","); }
if (revision != null) { sb.append("revision:"); sb.append(revision); }
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) V1ControllerRevisionFluent.this.withMetadata(builder.build());
}
public N endMetadata() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy