
io.kubernetes.client.models.V1ObjectMetaFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
import java.lang.String;
import org.joda.time.DateTime;
import io.kubernetes.client.fluent.Predicate;
import java.util.LinkedHashMap;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.List;
import java.lang.Boolean;
import java.lang.Long;
import java.util.Collection;
import java.lang.Object;
import java.util.Map;
public class V1ObjectMetaFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1ObjectMetaFluent{
private Map annotations;
private String clusterName;
private DateTime creationTimestamp;
private Long deletionGracePeriodSeconds;
private DateTime deletionTimestamp;
private List finalizers;
private String generateName;
private Long generation;
private V1InitializersBuilder initializers;
private Map labels;
private String name;
private String namespace;
private List ownerReferences;
private String resourceVersion;
private String selfLink;
private String uid;
public V1ObjectMetaFluentImpl(){
}
public V1ObjectMetaFluentImpl(V1ObjectMeta instance){
this.withAnnotations(instance.getAnnotations());
this.withClusterName(instance.getClusterName());
this.withCreationTimestamp(instance.getCreationTimestamp());
this.withDeletionGracePeriodSeconds(instance.getDeletionGracePeriodSeconds());
this.withDeletionTimestamp(instance.getDeletionTimestamp());
this.withFinalizers(instance.getFinalizers());
this.withGenerateName(instance.getGenerateName());
this.withGeneration(instance.getGeneration());
this.withInitializers(instance.getInitializers());
this.withLabels(instance.getLabels());
this.withName(instance.getName());
this.withNamespace(instance.getNamespace());
this.withOwnerReferences(instance.getOwnerReferences());
this.withResourceVersion(instance.getResourceVersion());
this.withSelfLink(instance.getSelfLink());
this.withUid(instance.getUid());
}
public A addToAnnotations(String key,String value){
if(this.annotations == null && key != null && value != null) { this.annotations = new LinkedHashMap(); }
if(key != null && value != null) {this.annotations.put(key, value);} return (A)this;
}
public A addToAnnotations(Map map){
if(this.annotations == null && map != null) { this.annotations = new LinkedHashMap(); }
if(map != null) { this.annotations.putAll(map);} return (A)this;
}
public A removeFromAnnotations(String key){
if(this.annotations == null) { return (A) this; }
if(key != null && this.annotations != null) {this.annotations.remove(key);} return (A)this;
}
public A removeFromAnnotations(Map map){
if(this.annotations == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.annotations != null){this.annotations.remove(key);}}} return (A)this;
}
public Map getAnnotations(){
return this.annotations;
}
public A withAnnotations(Map annotations){
if (annotations == null) { this.annotations = null;} else {this.annotations = new LinkedHashMap(annotations);} return (A) this;
}
public Boolean hasAnnotations(){
return this.annotations != null;
}
public String getClusterName(){
return this.clusterName;
}
public A withClusterName(String clusterName){
this.clusterName=clusterName; return (A) this;
}
public Boolean hasClusterName(){
return this.clusterName != null;
}
public DateTime getCreationTimestamp(){
return this.creationTimestamp;
}
public A withCreationTimestamp(DateTime creationTimestamp){
this.creationTimestamp=creationTimestamp; return (A) this;
}
public Boolean hasCreationTimestamp(){
return this.creationTimestamp != null;
}
public A withNewCreationTimestamp(int arg0,int arg1,int arg2,int arg3,int arg4){
return (A)withCreationTimestamp(new DateTime(arg0, arg1, arg2, arg3, arg4));
}
public A withNewCreationTimestamp(long arg0){
return (A)withCreationTimestamp(new DateTime(arg0));
}
public A withNewCreationTimestamp(Object arg0){
return (A)withCreationTimestamp(new DateTime(arg0));
}
public Long getDeletionGracePeriodSeconds(){
return this.deletionGracePeriodSeconds;
}
public A withDeletionGracePeriodSeconds(Long deletionGracePeriodSeconds){
this.deletionGracePeriodSeconds=deletionGracePeriodSeconds; return (A) this;
}
public Boolean hasDeletionGracePeriodSeconds(){
return this.deletionGracePeriodSeconds != null;
}
public A withNewDeletionGracePeriodSeconds(String arg1){
return (A)withDeletionGracePeriodSeconds(new Long(arg1));
}
public A withNewDeletionGracePeriodSeconds(long arg1){
return (A)withDeletionGracePeriodSeconds(new Long(arg1));
}
public DateTime getDeletionTimestamp(){
return this.deletionTimestamp;
}
public A withDeletionTimestamp(DateTime deletionTimestamp){
this.deletionTimestamp=deletionTimestamp; return (A) this;
}
public Boolean hasDeletionTimestamp(){
return this.deletionTimestamp != null;
}
public A withNewDeletionTimestamp(int arg0,int arg1,int arg2,int arg3,int arg4){
return (A)withDeletionTimestamp(new DateTime(arg0, arg1, arg2, arg3, arg4));
}
public A withNewDeletionTimestamp(long arg0){
return (A)withDeletionTimestamp(new DateTime(arg0));
}
public A withNewDeletionTimestamp(Object arg0){
return (A)withDeletionTimestamp(new DateTime(arg0));
}
public A addToFinalizers(int index,String item){
if (this.finalizers == null) {this.finalizers = new ArrayList();}
this.finalizers.add(index, item);
return (A)this;
}
public A setToFinalizers(int index,String item){
this.finalizers.set(index, item); return (A)this;
}
public A addToFinalizers(String... items){
for (String item : items) {this.finalizers.add(item);} return (A)this;
}
public A addAllToFinalizers(Collection items){
for (String item : items) {this.finalizers.add(item);} return (A)this;
}
public A removeFromFinalizers(String... items){
for (String item : items) {if (this.finalizers!= null){ this.finalizers.remove(item);}} return (A)this;
}
public A removeAllFromFinalizers(Collection items){
for (String item : items) {if (this.finalizers!= null){ this.finalizers.remove(item);}} return (A)this;
}
public List getFinalizers(){
return this.finalizers;
}
public String getFinalizer(int index){
return this.finalizers.get(index);
}
public String getFirstFinalizer(){
return this.finalizers.get(0);
}
public String getLastFinalizer(){
return this.finalizers.get(finalizers.size() - 1);
}
public String getMatchingFinalizer(io.kubernetes.client.fluent.Predicate predicate){
for (String item: finalizers) { if(predicate.apply(item)){return item;} } return null;
}
public A withFinalizers(List finalizers){
if (this.finalizers != null) { _visitables.removeAll(this.finalizers);}
if (finalizers != null) {this.finalizers = new ArrayList(); for (String item : finalizers){this.addToFinalizers(item);}} else { this.finalizers = null;} return (A) this;
}
public A withFinalizers(String... finalizers){
this.finalizers.clear(); if (finalizers != null) {for (String item :finalizers){ this.addToFinalizers(item);}} return (A) this;
}
public Boolean hasFinalizers(){
return finalizers != null && !finalizers.isEmpty();
}
public String getGenerateName(){
return this.generateName;
}
public A withGenerateName(String generateName){
this.generateName=generateName; return (A) this;
}
public Boolean hasGenerateName(){
return this.generateName != null;
}
public Long getGeneration(){
return this.generation;
}
public A withGeneration(Long generation){
this.generation=generation; return (A) this;
}
public Boolean hasGeneration(){
return this.generation != null;
}
public A withNewGeneration(String arg1){
return (A)withGeneration(new Long(arg1));
}
public A withNewGeneration(long arg1){
return (A)withGeneration(new Long(arg1));
}
/**
* This method has been deprecated, please use method buildInitializers instead.
*/
@Deprecated public V1Initializers getInitializers(){
return this.initializers!=null?this.initializers.build():null;
}
public V1Initializers buildInitializers(){
return this.initializers!=null?this.initializers.build():null;
}
public A withInitializers(V1Initializers initializers){
_visitables.remove(this.initializers);
if (initializers!=null){ this.initializers= new V1InitializersBuilder(initializers); _visitables.add(this.initializers);} return (A) this;
}
public Boolean hasInitializers(){
return this.initializers != null;
}
public V1ObjectMetaFluent.InitializersNested withNewInitializers(){
return new InitializersNestedImpl();
}
public V1ObjectMetaFluent.InitializersNested withNewInitializersLike(V1Initializers item){
return new InitializersNestedImpl(item);
}
public V1ObjectMetaFluent.InitializersNested editInitializers(){
return withNewInitializersLike(getInitializers());
}
public V1ObjectMetaFluent.InitializersNested editOrNewInitializers(){
return withNewInitializersLike(getInitializers() != null ? getInitializers(): new V1InitializersBuilder().build());
}
public V1ObjectMetaFluent.InitializersNested editOrNewInitializersLike(V1Initializers item){
return withNewInitializersLike(getInitializers() != null ? getInitializers(): item);
}
public A addToLabels(String key,String value){
if(this.labels == null && key != null && value != null) { this.labels = new LinkedHashMap(); }
if(key != null && value != null) {this.labels.put(key, value);} return (A)this;
}
public A addToLabels(Map map){
if(this.labels == null && map != null) { this.labels = new LinkedHashMap(); }
if(map != null) { this.labels.putAll(map);} return (A)this;
}
public A removeFromLabels(String key){
if(this.labels == null) { return (A) this; }
if(key != null && this.labels != null) {this.labels.remove(key);} return (A)this;
}
public A removeFromLabels(Map map){
if(this.labels == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.labels != null){this.labels.remove(key);}}} return (A)this;
}
public Map getLabels(){
return this.labels;
}
public A withLabels(Map labels){
if (labels == null) { this.labels = null;} else {this.labels = new LinkedHashMap(labels);} return (A) this;
}
public Boolean hasLabels(){
return this.labels != null;
}
public String getName(){
return this.name;
}
public A withName(String name){
this.name=name; return (A) this;
}
public Boolean hasName(){
return this.name != null;
}
public String getNamespace(){
return this.namespace;
}
public A withNamespace(String namespace){
this.namespace=namespace; return (A) this;
}
public Boolean hasNamespace(){
return this.namespace != null;
}
public A addToOwnerReferences(int index,V1OwnerReference item){
if (this.ownerReferences == null) {this.ownerReferences = new ArrayList();}
V1OwnerReferenceBuilder builder = new V1OwnerReferenceBuilder(item);_visitables.add(index >= 0 ? index : _visitables.size(), builder);this.ownerReferences.add(index >= 0 ? index : ownerReferences.size(), builder); return (A)this;
}
public A setToOwnerReferences(int index,V1OwnerReference item){
if (this.ownerReferences == null) {this.ownerReferences = new ArrayList();}
V1OwnerReferenceBuilder builder = new V1OwnerReferenceBuilder(item);
if (index < 0 || index >= _visitables.size()) { _visitables.add(builder); } else { _visitables.set(index, builder);}
if (index < 0 || index >= ownerReferences.size()) { ownerReferences.add(builder); } else { ownerReferences.set(index, builder);}
return (A)this;
}
public A addToOwnerReferences(V1OwnerReference... items){
if (this.ownerReferences == null) {this.ownerReferences = new ArrayList();}
for (V1OwnerReference item : items) {V1OwnerReferenceBuilder builder = new V1OwnerReferenceBuilder(item);_visitables.add(builder);this.ownerReferences.add(builder);} return (A)this;
}
public A addAllToOwnerReferences(Collection items){
if (this.ownerReferences == null) {this.ownerReferences = new ArrayList();}
for (V1OwnerReference item : items) {V1OwnerReferenceBuilder builder = new V1OwnerReferenceBuilder(item);_visitables.add(builder);this.ownerReferences.add(builder);} return (A)this;
}
public A removeFromOwnerReferences(V1OwnerReference... items){
for (V1OwnerReference item : items) {V1OwnerReferenceBuilder builder = new V1OwnerReferenceBuilder(item);_visitables.remove(builder);if (this.ownerReferences != null) {this.ownerReferences.remove(builder);}} return (A)this;
}
public A removeAllFromOwnerReferences(Collection items){
for (V1OwnerReference item : items) {V1OwnerReferenceBuilder builder = new V1OwnerReferenceBuilder(item);_visitables.remove(builder);if (this.ownerReferences != null) {this.ownerReferences.remove(builder);}} return (A)this;
}
/**
* This method has been deprecated, please use method buildOwnerReferences instead.
*/
@Deprecated public List getOwnerReferences(){
return build(ownerReferences);
}
public List buildOwnerReferences(){
return build(ownerReferences);
}
public V1OwnerReference buildOwnerReference(int index){
return this.ownerReferences.get(index).build();
}
public V1OwnerReference buildFirstOwnerReference(){
return this.ownerReferences.get(0).build();
}
public V1OwnerReference buildLastOwnerReference(){
return this.ownerReferences.get(ownerReferences.size() - 1).build();
}
public V1OwnerReference buildMatchingOwnerReference(io.kubernetes.client.fluent.Predicate predicate){
for (V1OwnerReferenceBuilder item: ownerReferences) { if(predicate.apply(item)){return item.build();} } return null;
}
public A withOwnerReferences(List ownerReferences){
if (this.ownerReferences != null) { _visitables.removeAll(this.ownerReferences);}
if (ownerReferences != null) {this.ownerReferences = new ArrayList(); for (V1OwnerReference item : ownerReferences){this.addToOwnerReferences(item);}} else { this.ownerReferences = null;} return (A) this;
}
public A withOwnerReferences(V1OwnerReference... ownerReferences){
this.ownerReferences.clear(); if (ownerReferences != null) {for (V1OwnerReference item :ownerReferences){ this.addToOwnerReferences(item);}} return (A) this;
}
public Boolean hasOwnerReferences(){
return ownerReferences != null && !ownerReferences.isEmpty();
}
public V1ObjectMetaFluent.OwnerReferencesNested addNewOwnerReference(){
return new OwnerReferencesNestedImpl();
}
public V1ObjectMetaFluent.OwnerReferencesNested addNewOwnerReferenceLike(V1OwnerReference item){
return new OwnerReferencesNestedImpl(-1, item);
}
public V1ObjectMetaFluent.OwnerReferencesNested setNewOwnerReferenceLike(int index,V1OwnerReference item){
return new OwnerReferencesNestedImpl(index, item);
}
public V1ObjectMetaFluent.OwnerReferencesNested editOwnerReference(int index){
if (ownerReferences.size() <= index) throw new RuntimeException("Can't edit ownerReferences. Index exceeds size.");
return setNewOwnerReferenceLike(index, buildOwnerReference(index));
}
public V1ObjectMetaFluent.OwnerReferencesNested editFirstOwnerReference(){
if (ownerReferences.size() == 0) throw new RuntimeException("Can't edit first ownerReferences. The list is empty.");
return setNewOwnerReferenceLike(0, buildOwnerReference(0));
}
public V1ObjectMetaFluent.OwnerReferencesNested editLastOwnerReference(){
int index = ownerReferences.size() - 1;
if (index < 0) throw new RuntimeException("Can't edit last ownerReferences. The list is empty.");
return setNewOwnerReferenceLike(index, buildOwnerReference(index));
}
public V1ObjectMetaFluent.OwnerReferencesNested editMatchingOwnerReference(io.kubernetes.client.fluent.Predicate predicate){
int index = -1;
for (int i=0;i extends V1InitializersFluentImpl> implements V1ObjectMetaFluent.InitializersNested,io.kubernetes.client.fluent.Nested{
private final V1InitializersBuilder builder;
InitializersNestedImpl(V1Initializers item){
this.builder = new V1InitializersBuilder(this, item);
}
InitializersNestedImpl(){
this.builder = new V1InitializersBuilder(this);
}
public N and(){
return (N) V1ObjectMetaFluentImpl.this.withInitializers(builder.build());
}
public N endInitializers(){
return and();
}
}
public class OwnerReferencesNestedImpl extends V1OwnerReferenceFluentImpl> implements V1ObjectMetaFluent.OwnerReferencesNested,io.kubernetes.client.fluent.Nested{
private final V1OwnerReferenceBuilder builder;
private final int index;
OwnerReferencesNestedImpl(int index,V1OwnerReference item){
this.index = index;
this.builder = new V1OwnerReferenceBuilder(this, item);
}
OwnerReferencesNestedImpl(){
this.index = -1;
this.builder = new V1OwnerReferenceBuilder(this);
}
public N and(){
return (N) V1ObjectMetaFluentImpl.this.setToOwnerReferences(index, builder.build());
}
public N endOwnerReference(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy