io.fabric8.knative.flows.v1.ParallelListBuilder Maven / Gradle / Ivy
package io.fabric8.knative.flows.v1;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class ParallelListBuilder extends ParallelListFluent implements VisitableBuilder{
public ParallelListBuilder() {
this(new ParallelList());
}
public ParallelListBuilder(ParallelListFluent> fluent) {
this(fluent, new ParallelList());
}
public ParallelListBuilder(ParallelListFluent> fluent,ParallelList instance) {
this.fluent = fluent;
fluent.copyInstance(instance);
}
public ParallelListBuilder(ParallelList instance) {
this.fluent = this;
this.copyInstance(instance);
}
ParallelListFluent> fluent;
public ParallelList build() {
ParallelList buildable = new ParallelList(fluent.getApiVersion(),fluent.buildItems(),fluent.getKind(),fluent.getMetadata());
buildable.setAdditionalProperties(fluent.getAdditionalProperties());
return buildable;
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy