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

io.kubernetes.client.openapi.models.CoreV1EventSeriesBuilder 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;
public class CoreV1EventSeriesBuilder extends CoreV1EventSeriesFluent implements VisitableBuilder{
  public CoreV1EventSeriesBuilder() {
    this(new CoreV1EventSeries());
  }
  
  public CoreV1EventSeriesBuilder(CoreV1EventSeriesFluent fluent) {
    this(fluent, new CoreV1EventSeries());
  }
  
  public CoreV1EventSeriesBuilder(CoreV1EventSeriesFluent fluent,CoreV1EventSeries instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public CoreV1EventSeriesBuilder(CoreV1EventSeries instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  CoreV1EventSeriesFluent fluent;
  
  public CoreV1EventSeries build() {
    CoreV1EventSeries buildable = new CoreV1EventSeries();
    buildable.setCount(fluent.getCount());
    buildable.setLastObservedTime(fluent.getLastObservedTime());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy