me.snowdrop.istio.api.model.v1.networking.StringMatchFluentImpl Maven / Gradle / Ivy
package me.snowdrop.istio.api.model.v1.networking;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
public class StringMatchFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements StringMatchFluent{
private Object matchType;
public StringMatchFluentImpl(){
}
public StringMatchFluentImpl(StringMatch instance){
this.withMatchType(instance.getMatchType());
}
public Object getMatchType(){
return this.matchType;
}
public A withMatchType(Object matchType){
this.matchType=matchType; return (A) this;
}
public Boolean hasMatchType(){
return this.matchType != 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;
StringMatchFluentImpl that = (StringMatchFluentImpl) o;
if (matchType != null &&matchType != this ? !matchType.equals(that.matchType) :that.matchType != null &&matchType != this ) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy