io.fabric8.knative.v1.VolatileTimeFluentImpl Maven / Gradle / Ivy
package io.fabric8.knative.v1;
import java.lang.StringBuffer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.lang.StringBuilder;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class VolatileTimeFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements VolatileTimeFluent{
private String inner;
public VolatileTimeFluentImpl(){
}
public VolatileTimeFluentImpl(VolatileTime instance){
this.withInner(instance.getInner());
}
public String getInner(){
return this.inner;
}
public A withInner(String inner){
this.inner=inner; return (A) this;
}
public Boolean hasInner(){
return this.inner != null;
}
public A withNewInner(String arg1){
return (A)withInner(new String(arg1));
}
public A withNewInner(StringBuilder arg1){
return (A)withInner(new String(arg1));
}
public A withNewInner(StringBuffer arg1){
return (A)withInner(new String(arg1));
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
VolatileTimeFluentImpl that = (VolatileTimeFluentImpl) o;
if (inner != null ? !inner.equals(that.inner) :that.inner != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy