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

io.kubernetes.client.openapi.models.V1StatefulSetConditionBuilder 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 V1StatefulSetConditionBuilder extends V1StatefulSetConditionFluentImpl implements VisitableBuilder{
  public V1StatefulSetConditionBuilder() {
    this(false);
  }
  public V1StatefulSetConditionBuilder(Boolean validationEnabled) {
    this(new V1StatefulSetCondition(), validationEnabled);
  }
  public V1StatefulSetConditionBuilder(V1StatefulSetConditionFluent fluent) {
    this(fluent, false);
  }
  public V1StatefulSetConditionBuilder(V1StatefulSetConditionFluent fluent,Boolean validationEnabled) {
    this(fluent, new V1StatefulSetCondition(), validationEnabled);
  }
  public V1StatefulSetConditionBuilder(V1StatefulSetConditionFluent fluent,V1StatefulSetCondition instance) {
    this(fluent, instance, false);
  }
  public V1StatefulSetConditionBuilder(V1StatefulSetConditionFluent fluent,V1StatefulSetCondition instance,Boolean validationEnabled) {
    this.fluent = fluent; 
    if (instance != null) {
      fluent.withLastTransitionTime(instance.getLastTransitionTime());
      fluent.withMessage(instance.getMessage());
      fluent.withReason(instance.getReason());
      fluent.withStatus(instance.getStatus());
      fluent.withType(instance.getType());
    }
    this.validationEnabled = validationEnabled; 
  }
  public V1StatefulSetConditionBuilder(V1StatefulSetCondition instance) {
    this(instance,false);
  }
  public V1StatefulSetConditionBuilder(V1StatefulSetCondition instance,Boolean validationEnabled) {
    this.fluent = this; 
    if (instance != null) {
      this.withLastTransitionTime(instance.getLastTransitionTime());
      this.withMessage(instance.getMessage());
      this.withReason(instance.getReason());
      this.withStatus(instance.getStatus());
      this.withType(instance.getType());
    }
    this.validationEnabled = validationEnabled; 
  }
  V1StatefulSetConditionFluent fluent;
  Boolean validationEnabled;
  public V1StatefulSetCondition build() {
    V1StatefulSetCondition buildable = new V1StatefulSetCondition();
    buildable.setLastTransitionTime(fluent.getLastTransitionTime());
    buildable.setMessage(fluent.getMessage());
    buildable.setReason(fluent.getReason());
    buildable.setStatus(fluent.getStatus());
    buildable.setType(fluent.getType());
    return buildable;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy