
io.kubernetes.client.models.V1alpha1RuleBuilder Maven / Gradle / Ivy
package io.kubernetes.client.models;
import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class V1alpha1RuleBuilder extends V1alpha1RuleFluentImpl implements VisitableBuilder{
V1alpha1RuleFluent> fluent;
Boolean validationEnabled;
public V1alpha1RuleBuilder(){
this(true);
}
public V1alpha1RuleBuilder(Boolean validationEnabled){
this(new V1alpha1Rule(), validationEnabled);
}
public V1alpha1RuleBuilder(V1alpha1RuleFluent> fluent){
this(fluent, true);
}
public V1alpha1RuleBuilder(V1alpha1RuleFluent> fluent,Boolean validationEnabled){
this(fluent, new V1alpha1Rule(), validationEnabled);
}
public V1alpha1RuleBuilder(V1alpha1RuleFluent> fluent,V1alpha1Rule instance){
this(fluent, instance, true);
}
public V1alpha1RuleBuilder(V1alpha1RuleFluent> fluent,V1alpha1Rule instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withApiGroups(instance.getApiGroups());
fluent.withApiVersions(instance.getApiVersions());
fluent.withResources(instance.getResources());
this.validationEnabled = validationEnabled;
}
public V1alpha1RuleBuilder(V1alpha1Rule instance){
this(instance,true);
}
public V1alpha1RuleBuilder(V1alpha1Rule instance,Boolean validationEnabled){
this.fluent = this;
this.withApiGroups(instance.getApiGroups());
this.withApiVersions(instance.getApiVersions());
this.withResources(instance.getResources());
this.validationEnabled = validationEnabled;
}
public V1alpha1Rule build(){
V1alpha1Rule buildable = new V1alpha1Rule();
buildable.setApiGroups(fluent.getApiGroups());
buildable.setApiVersions(fluent.getApiVersions());
buildable.setResources(fluent.getResources());
return buildable;
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1alpha1RuleBuilder that = (V1alpha1RuleBuilder) o;
if (fluent != null &&fluent != this ? !fluent.equals(that.fluent) :that.fluent != null &&fluent != this ) return false;
if (validationEnabled != null ? !validationEnabled.equals(that.validationEnabled) :that.validationEnabled != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy