![JAR search and dependency download from the Maven repository](/logo.png)
io.fabric8.kubernetes.api.model.DoneableComponentStatusList Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import io.fabric8.kubernetes.api.builder.Function;
public class DoneableComponentStatusList extends ComponentStatusListFluentImpl implements Doneable{
private final ComponentStatusListBuilder builder;
private final Function function;
public DoneableComponentStatusList(Function function){
super();this.builder=new ComponentStatusListBuilder(this);this.function=function;
}
public DoneableComponentStatusList(ComponentStatusList item,Function function){
super(item);this.builder=new ComponentStatusListBuilder(this, item);this.function=function;
}
public DoneableComponentStatusList(ComponentStatusList item){
super(item);this.builder=new ComponentStatusListBuilder(this, item);this.function=new Function() {
public ComponentStatusList apply(ComponentStatusList item) {
return item;
}
}
;
}
public ComponentStatusList done(){
return function.apply(builder.build());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy