io.kubernetes.client.openapi.models.CoreV1EventSeriesFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.Integer;
import java.time.OffsetDateTime;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.String;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class CoreV1EventSeriesFluent> extends BaseFluent{
public CoreV1EventSeriesFluent() {
}
public CoreV1EventSeriesFluent(CoreV1EventSeries instance) {
this.copyInstance(instance);
}
private Integer count;
private OffsetDateTime lastObservedTime;
protected void copyInstance(CoreV1EventSeries instance) {
instance = (instance != null ? instance : new CoreV1EventSeries());
if (instance != null) {
this.withCount(instance.getCount());
this.withLastObservedTime(instance.getLastObservedTime());
}
}
public Integer getCount() {
return this.count;
}
public A withCount(Integer count) {
this.count = count;
return (A) this;
}
public boolean hasCount() {
return this.count != null;
}
public OffsetDateTime getLastObservedTime() {
return this.lastObservedTime;
}
public A withLastObservedTime(OffsetDateTime lastObservedTime) {
this.lastObservedTime = lastObservedTime;
return (A) this;
}
public boolean hasLastObservedTime() {
return this.lastObservedTime != 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;
CoreV1EventSeriesFluent that = (CoreV1EventSeriesFluent) o;
if (!java.util.Objects.equals(count, that.count)) return false;
if (!java.util.Objects.equals(lastObservedTime, that.lastObservedTime)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(count, lastObservedTime, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (count != null) { sb.append("count:"); sb.append(count + ","); }
if (lastObservedTime != null) { sb.append("lastObservedTime:"); sb.append(lastObservedTime); }
sb.append("}");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy