All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kubernetes.client.openapi.models.V1beta1FlowSchemaSpecBuilder Maven / Gradle / Ivy

There is a newer version: 22.0.0
Show newest version
package io.kubernetes.client.openapi.models;

import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Boolean;
public class V1beta1FlowSchemaSpecBuilder extends V1beta1FlowSchemaSpecFluentImpl implements VisitableBuilder{
  public V1beta1FlowSchemaSpecBuilder() {
    this(false);
  }
  public V1beta1FlowSchemaSpecBuilder(Boolean validationEnabled) {
    this(new V1beta1FlowSchemaSpec(), validationEnabled);
  }
  public V1beta1FlowSchemaSpecBuilder(V1beta1FlowSchemaSpecFluent fluent) {
    this(fluent, false);
  }
  public V1beta1FlowSchemaSpecBuilder(V1beta1FlowSchemaSpecFluent fluent,Boolean validationEnabled) {
    this(fluent, new V1beta1FlowSchemaSpec(), validationEnabled);
  }
  public V1beta1FlowSchemaSpecBuilder(V1beta1FlowSchemaSpecFluent fluent,V1beta1FlowSchemaSpec instance) {
    this(fluent, instance, false);
  }
  public V1beta1FlowSchemaSpecBuilder(V1beta1FlowSchemaSpecFluent fluent,V1beta1FlowSchemaSpec instance,Boolean validationEnabled) {
    this.fluent = fluent; 
    fluent.withDistinguisherMethod(instance.getDistinguisherMethod());

    fluent.withMatchingPrecedence(instance.getMatchingPrecedence());

    fluent.withPriorityLevelConfiguration(instance.getPriorityLevelConfiguration());

    fluent.withRules(instance.getRules());

    this.validationEnabled = validationEnabled; 
  }
  public V1beta1FlowSchemaSpecBuilder(V1beta1FlowSchemaSpec instance) {
    this(instance,false);
  }
  public V1beta1FlowSchemaSpecBuilder(V1beta1FlowSchemaSpec instance,Boolean validationEnabled) {
    this.fluent = this; 
    this.withDistinguisherMethod(instance.getDistinguisherMethod());

    this.withMatchingPrecedence(instance.getMatchingPrecedence());

    this.withPriorityLevelConfiguration(instance.getPriorityLevelConfiguration());

    this.withRules(instance.getRules());

    this.validationEnabled = validationEnabled; 
  }
  V1beta1FlowSchemaSpecFluent fluent;
  Boolean validationEnabled;
  public V1beta1FlowSchemaSpec build() {
    V1beta1FlowSchemaSpec buildable = new V1beta1FlowSchemaSpec();
    buildable.setDistinguisherMethod(fluent.getDistinguisherMethod());
    buildable.setMatchingPrecedence(fluent.getMatchingPrecedence());
    buildable.setPriorityLevelConfiguration(fluent.getPriorityLevelConfiguration());
    buildable.setRules(fluent.getRules());
    return buildable;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy