me.snowdrop.istio.api.NullValueKindFluentImpl Maven / Gradle / Ivy
package me.snowdrop.istio.api;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
public class NullValueKindFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements NullValueKindFluent{
private NullValue nullValue;
public NullValueKindFluentImpl(){
}
public NullValueKindFluentImpl(NullValueKind instance){
this.withNullValue(instance.getNullValue());
}
public NullValue getNullValue(){
return this.nullValue;
}
public A withNullValue(NullValue nullValue){
this.nullValue=nullValue; return (A) this;
}
public Boolean hasNullValue(){
return this.nullValue != null;
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
NullValueKindFluentImpl that = (NullValueKindFluentImpl) o;
if (nullValue != null ? !nullValue.equals(that.nullValue) :that.nullValue != null) return false;
return true;
}
}