
io.kubernetes.client.openapi.models.V1ScopeSelectorBuilder Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.VisitableBuilder;
public class V1ScopeSelectorBuilder extends V1ScopeSelectorFluent implements VisitableBuilder{
public V1ScopeSelectorBuilder() {
this(new V1ScopeSelector());
}
public V1ScopeSelectorBuilder(V1ScopeSelectorFluent> fluent) {
this(fluent, new V1ScopeSelector());
}
public V1ScopeSelectorBuilder(V1ScopeSelectorFluent> fluent,V1ScopeSelector instance) {
this.fluent = fluent;
fluent.copyInstance(instance);
}
public V1ScopeSelectorBuilder(V1ScopeSelector instance) {
this.fluent = this;
this.copyInstance(instance);
}
V1ScopeSelectorFluent> fluent;
public V1ScopeSelector build() {
V1ScopeSelector buildable = new V1ScopeSelector();
buildable.setMatchExpressions(fluent.buildMatchExpressions());
return buildable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy