
io.kubernetes.client.models.V1ContainerStateRunningFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
import org.joda.time.DateTime;
public class V1ContainerStateRunningFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1ContainerStateRunningFluent{
private DateTime startedAt;
public V1ContainerStateRunningFluentImpl(){
}
public V1ContainerStateRunningFluentImpl(V1ContainerStateRunning instance){
this.withStartedAt(instance.getStartedAt());
}
public DateTime getStartedAt(){
return this.startedAt;
}
public A withStartedAt(DateTime startedAt){
this.startedAt=startedAt; return (A) this;
}
public Boolean hasStartedAt(){
return this.startedAt != null;
}
public A withNewStartedAt(int arg0,int arg1,int arg2,int arg3,int arg4){
return (A)withStartedAt(new DateTime(arg0, arg1, arg2, arg3, arg4));
}
public A withNewStartedAt(long arg0){
return (A)withStartedAt(new DateTime(arg0));
}
public A withNewStartedAt(Object arg0){
return (A)withStartedAt(new DateTime(arg0));
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1ContainerStateRunningFluentImpl that = (V1ContainerStateRunningFluentImpl) o;
if (startedAt != null ? !startedAt.equals(that.startedAt) :that.startedAt != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy