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

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

package io.kubernetes.client.openapi.models;

import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Boolean;
public class V1beta2FlowSchemaSpecBuilder extends V1beta2FlowSchemaSpecFluentImpl implements VisitableBuilder{
  public V1beta2FlowSchemaSpecBuilder() {
    this(false);
  }
  public V1beta2FlowSchemaSpecBuilder(Boolean validationEnabled) {
    this(new V1beta2FlowSchemaSpec(), validationEnabled);
  }
  public V1beta2FlowSchemaSpecBuilder(V1beta2FlowSchemaSpecFluent fluent) {
    this(fluent, false);
  }
  public V1beta2FlowSchemaSpecBuilder(V1beta2FlowSchemaSpecFluent fluent,Boolean validationEnabled) {
    this(fluent, new V1beta2FlowSchemaSpec(), validationEnabled);
  }
  public V1beta2FlowSchemaSpecBuilder(V1beta2FlowSchemaSpecFluent fluent,V1beta2FlowSchemaSpec instance) {
    this(fluent, instance, false);
  }
  public V1beta2FlowSchemaSpecBuilder(V1beta2FlowSchemaSpecFluent fluent,V1beta2FlowSchemaSpec instance,Boolean validationEnabled) {
    this.fluent = fluent; 
    if (instance != null) {
      fluent.withDistinguisherMethod(instance.getDistinguisherMethod());
      fluent.withMatchingPrecedence(instance.getMatchingPrecedence());
      fluent.withPriorityLevelConfiguration(instance.getPriorityLevelConfiguration());
      fluent.withRules(instance.getRules());
    }
    this.validationEnabled = validationEnabled; 
  }
  public V1beta2FlowSchemaSpecBuilder(V1beta2FlowSchemaSpec instance) {
    this(instance,false);
  }
  public V1beta2FlowSchemaSpecBuilder(V1beta2FlowSchemaSpec instance,Boolean validationEnabled) {
    this.fluent = this; 
    if (instance != null) {
      this.withDistinguisherMethod(instance.getDistinguisherMethod());
      this.withMatchingPrecedence(instance.getMatchingPrecedence());
      this.withPriorityLevelConfiguration(instance.getPriorityLevelConfiguration());
      this.withRules(instance.getRules());
    }
    this.validationEnabled = validationEnabled; 
  }
  V1beta2FlowSchemaSpecFluent fluent;
  Boolean validationEnabled;
  public V1beta2FlowSchemaSpec build() {
    V1beta2FlowSchemaSpec buildable = new V1beta2FlowSchemaSpec();
    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