io.fabric8.kubernetes.api.model.flowcontrol.v1beta3.FlowDistinguisherMethodBuilder Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.flowcontrol.v1beta3;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
public class FlowDistinguisherMethodBuilder extends FlowDistinguisherMethodFluent implements VisitableBuilder{
public FlowDistinguisherMethodBuilder() {
this(new FlowDistinguisherMethod());
}
public FlowDistinguisherMethodBuilder(FlowDistinguisherMethodFluent> fluent) {
this(fluent, new FlowDistinguisherMethod());
}
public FlowDistinguisherMethodBuilder(FlowDistinguisherMethodFluent> fluent,FlowDistinguisherMethod instance) {
this.fluent = fluent;
fluent.copyInstance(instance);
}
public FlowDistinguisherMethodBuilder(FlowDistinguisherMethod instance) {
this.fluent = this;
this.copyInstance(instance);
}
FlowDistinguisherMethodFluent> fluent;
public FlowDistinguisherMethod build() {
FlowDistinguisherMethod buildable = new FlowDistinguisherMethod(fluent.getType());
buildable.setAdditionalProperties(fluent.getAdditionalProperties());
return buildable;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy