io.fabric8.knative.sources.v1.PingSourceListBuilder Maven / Gradle / Ivy
package io.fabric8.knative.sources.v1;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class PingSourceListBuilder extends io.fabric8.knative.sources.v1.PingSourceListFluentImpl implements io.fabric8.kubernetes.api.builder.VisitableBuilder{
public PingSourceListBuilder() {
this(false);
}
public PingSourceListBuilder(java.lang.Boolean validationEnabled) {
this(new PingSourceList(), validationEnabled);
}
public PingSourceListBuilder(io.fabric8.knative.sources.v1.PingSourceListFluent> fluent) {
this(fluent, false);
}
public PingSourceListBuilder(io.fabric8.knative.sources.v1.PingSourceListFluent> fluent,java.lang.Boolean validationEnabled) {
this(fluent, new PingSourceList(), validationEnabled);
}
public PingSourceListBuilder(io.fabric8.knative.sources.v1.PingSourceListFluent> fluent,io.fabric8.knative.sources.v1.PingSourceList instance) {
this(fluent, instance, false);
}
public PingSourceListBuilder(io.fabric8.knative.sources.v1.PingSourceListFluent> fluent,io.fabric8.knative.sources.v1.PingSourceList instance,java.lang.Boolean validationEnabled) {
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withItems(instance.getItems());
fluent.withKind(instance.getKind());
fluent.withMetadata(instance.getMetadata());
this.validationEnabled = validationEnabled;
}
public PingSourceListBuilder(io.fabric8.knative.sources.v1.PingSourceList instance) {
this(instance,false);
}
public PingSourceListBuilder(io.fabric8.knative.sources.v1.PingSourceList instance,java.lang.Boolean validationEnabled) {
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withItems(instance.getItems());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.validationEnabled = validationEnabled;
}
io.fabric8.knative.sources.v1.PingSourceListFluent> fluent;
java.lang.Boolean validationEnabled;
public io.fabric8.knative.sources.v1.PingSourceList build() {
PingSourceList buildable = new PingSourceList(fluent.getApiVersion(),fluent.getItems(),fluent.getKind(),fluent.getMetadata());
return buildable;
}
public boolean equals(java.lang.Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
PingSourceListBuilder that = (PingSourceListBuilder) 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;
}
public int hashCode() {
return java.util.Objects.hash(fluent, validationEnabled, super.hashCode());
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy