
io.kubernetes.client.openapi.models.V1ManagedFieldsEntryFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.time.OffsetDateTime;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class V1ManagedFieldsEntryFluentImpl> extends BaseFluent implements V1ManagedFieldsEntryFluent{
public V1ManagedFieldsEntryFluentImpl() {
}
public V1ManagedFieldsEntryFluentImpl(V1ManagedFieldsEntry instance) {
this.withApiVersion(instance.getApiVersion());
this.withFieldsType(instance.getFieldsType());
this.withFieldsV1(instance.getFieldsV1());
this.withManager(instance.getManager());
this.withOperation(instance.getOperation());
this.withSubresource(instance.getSubresource());
this.withTime(instance.getTime());
}
private String apiVersion;
private String fieldsType;
private Object fieldsV1;
private String manager;
private String operation;
private String subresource;
private OffsetDateTime time;
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 String getFieldsType() {
return this.fieldsType;
}
public A withFieldsType(String fieldsType) {
this.fieldsType=fieldsType; return (A) this;
}
public Boolean hasFieldsType() {
return this.fieldsType != null;
}
public Object getFieldsV1() {
return this.fieldsV1;
}
public A withFieldsV1(Object fieldsV1) {
this.fieldsV1=fieldsV1; return (A) this;
}
public Boolean hasFieldsV1() {
return this.fieldsV1 != null;
}
public String getManager() {
return this.manager;
}
public A withManager(String manager) {
this.manager=manager; return (A) this;
}
public Boolean hasManager() {
return this.manager != null;
}
public String getOperation() {
return this.operation;
}
public A withOperation(String operation) {
this.operation=operation; return (A) this;
}
public Boolean hasOperation() {
return this.operation != null;
}
public String getSubresource() {
return this.subresource;
}
public A withSubresource(String subresource) {
this.subresource=subresource; return (A) this;
}
public Boolean hasSubresource() {
return this.subresource != null;
}
public OffsetDateTime getTime() {
return this.time;
}
public A withTime(OffsetDateTime time) {
this.time=time; return (A) this;
}
public Boolean hasTime() {
return this.time != null;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
V1ManagedFieldsEntryFluentImpl that = (V1ManagedFieldsEntryFluentImpl) o;
if (apiVersion != null ? !apiVersion.equals(that.apiVersion) :that.apiVersion != null) return false;
if (fieldsType != null ? !fieldsType.equals(that.fieldsType) :that.fieldsType != null) return false;
if (fieldsV1 != null ? !fieldsV1.equals(that.fieldsV1) :that.fieldsV1 != null) return false;
if (manager != null ? !manager.equals(that.manager) :that.manager != null) return false;
if (operation != null ? !operation.equals(that.operation) :that.operation != null) return false;
if (subresource != null ? !subresource.equals(that.subresource) :that.subresource != null) return false;
if (time != null ? !time.equals(that.time) :that.time != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(apiVersion, fieldsType, fieldsV1, manager, operation, subresource, time, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (apiVersion != null) { sb.append("apiVersion:"); sb.append(apiVersion + ","); }
if (fieldsType != null) { sb.append("fieldsType:"); sb.append(fieldsType + ","); }
if (fieldsV1 != null) { sb.append("fieldsV1:"); sb.append(fieldsV1 + ","); }
if (manager != null) { sb.append("manager:"); sb.append(manager + ","); }
if (operation != null) { sb.append("operation:"); sb.append(operation + ","); }
if (subresource != null) { sb.append("subresource:"); sb.append(subresource + ","); }
if (time != null) { sb.append("time:"); sb.append(time); }
sb.append("}");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy