
io.kubernetes.client.openapi.models.V1APIResourceFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.ArrayList;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.String;
import java.lang.Boolean;
import java.util.function.Predicate;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1APIResourceFluent> extends BaseFluent{
public V1APIResourceFluent() {
}
public V1APIResourceFluent(V1APIResource instance) {
this.copyInstance(instance);
}
private List categories;
private String group;
private String kind;
private String name;
private Boolean namespaced;
private List shortNames;
private String singularName;
private String storageVersionHash;
private List verbs;
private String version;
protected void copyInstance(V1APIResource instance) {
instance = (instance != null ? instance : new V1APIResource());
if (instance != null) {
this.withCategories(instance.getCategories());
this.withGroup(instance.getGroup());
this.withKind(instance.getKind());
this.withName(instance.getName());
this.withNamespaced(instance.getNamespaced());
this.withShortNames(instance.getShortNames());
this.withSingularName(instance.getSingularName());
this.withStorageVersionHash(instance.getStorageVersionHash());
this.withVerbs(instance.getVerbs());
this.withVersion(instance.getVersion());
}
}
public A addToCategories(int index,String item) {
if (this.categories == null) {this.categories = new ArrayList();}
this.categories.add(index, item);
return (A)this;
}
public A setToCategories(int index,String item) {
if (this.categories == null) {this.categories = new ArrayList();}
this.categories.set(index, item); return (A)this;
}
public A addToCategories(java.lang.String... items) {
if (this.categories == null) {this.categories = new ArrayList();}
for (String item : items) {this.categories.add(item);} return (A)this;
}
public A addAllToCategories(Collection items) {
if (this.categories == null) {this.categories = new ArrayList();}
for (String item : items) {this.categories.add(item);} return (A)this;
}
public A removeFromCategories(java.lang.String... items) {
if (this.categories == null) return (A)this;
for (String item : items) { this.categories.remove(item);} return (A)this;
}
public A removeAllFromCategories(Collection items) {
if (this.categories == null) return (A)this;
for (String item : items) { this.categories.remove(item);} return (A)this;
}
public List getCategories() {
return this.categories;
}
public String getCategory(int index) {
return this.categories.get(index);
}
public String getFirstCategory() {
return this.categories.get(0);
}
public String getLastCategory() {
return this.categories.get(categories.size() - 1);
}
public String getMatchingCategory(Predicate predicate) {
for (String item : categories) {
if (predicate.test(item)) {
return item;
}
}
return null;
}
public boolean hasMatchingCategory(Predicate predicate) {
for (String item : categories) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withCategories(List categories) {
if (categories != null) {
this.categories = new ArrayList();
for (String item : categories) {
this.addToCategories(item);
}
} else {
this.categories = null;
}
return (A) this;
}
public A withCategories(java.lang.String... categories) {
if (this.categories != null) {
this.categories.clear();
_visitables.remove("categories");
}
if (categories != null) {
for (String item : categories) {
this.addToCategories(item);
}
}
return (A) this;
}
public boolean hasCategories() {
return this.categories != null && !this.categories.isEmpty();
}
public String getGroup() {
return this.group;
}
public A withGroup(String group) {
this.group = group;
return (A) this;
}
public boolean hasGroup() {
return this.group != null;
}
public String getKind() {
return this.kind;
}
public A withKind(String kind) {
this.kind = kind;
return (A) this;
}
public boolean hasKind() {
return this.kind != 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 Boolean getNamespaced() {
return this.namespaced;
}
public A withNamespaced(Boolean namespaced) {
this.namespaced = namespaced;
return (A) this;
}
public boolean hasNamespaced() {
return this.namespaced != null;
}
public A addToShortNames(int index,String item) {
if (this.shortNames == null) {this.shortNames = new ArrayList();}
this.shortNames.add(index, item);
return (A)this;
}
public A setToShortNames(int index,String item) {
if (this.shortNames == null) {this.shortNames = new ArrayList();}
this.shortNames.set(index, item); return (A)this;
}
public A addToShortNames(java.lang.String... items) {
if (this.shortNames == null) {this.shortNames = new ArrayList();}
for (String item : items) {this.shortNames.add(item);} return (A)this;
}
public A addAllToShortNames(Collection items) {
if (this.shortNames == null) {this.shortNames = new ArrayList();}
for (String item : items) {this.shortNames.add(item);} return (A)this;
}
public A removeFromShortNames(java.lang.String... items) {
if (this.shortNames == null) return (A)this;
for (String item : items) { this.shortNames.remove(item);} return (A)this;
}
public A removeAllFromShortNames(Collection items) {
if (this.shortNames == null) return (A)this;
for (String item : items) { this.shortNames.remove(item);} return (A)this;
}
public List getShortNames() {
return this.shortNames;
}
public String getShortName(int index) {
return this.shortNames.get(index);
}
public String getFirstShortName() {
return this.shortNames.get(0);
}
public String getLastShortName() {
return this.shortNames.get(shortNames.size() - 1);
}
public String getMatchingShortName(Predicate predicate) {
for (String item : shortNames) {
if (predicate.test(item)) {
return item;
}
}
return null;
}
public boolean hasMatchingShortName(Predicate predicate) {
for (String item : shortNames) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withShortNames(List shortNames) {
if (shortNames != null) {
this.shortNames = new ArrayList();
for (String item : shortNames) {
this.addToShortNames(item);
}
} else {
this.shortNames = null;
}
return (A) this;
}
public A withShortNames(java.lang.String... shortNames) {
if (this.shortNames != null) {
this.shortNames.clear();
_visitables.remove("shortNames");
}
if (shortNames != null) {
for (String item : shortNames) {
this.addToShortNames(item);
}
}
return (A) this;
}
public boolean hasShortNames() {
return this.shortNames != null && !this.shortNames.isEmpty();
}
public String getSingularName() {
return this.singularName;
}
public A withSingularName(String singularName) {
this.singularName = singularName;
return (A) this;
}
public boolean hasSingularName() {
return this.singularName != null;
}
public String getStorageVersionHash() {
return this.storageVersionHash;
}
public A withStorageVersionHash(String storageVersionHash) {
this.storageVersionHash = storageVersionHash;
return (A) this;
}
public boolean hasStorageVersionHash() {
return this.storageVersionHash != null;
}
public A addToVerbs(int index,String item) {
if (this.verbs == null) {this.verbs = new ArrayList();}
this.verbs.add(index, item);
return (A)this;
}
public A setToVerbs(int index,String item) {
if (this.verbs == null) {this.verbs = new ArrayList();}
this.verbs.set(index, item); return (A)this;
}
public A addToVerbs(java.lang.String... items) {
if (this.verbs == null) {this.verbs = new ArrayList();}
for (String item : items) {this.verbs.add(item);} return (A)this;
}
public A addAllToVerbs(Collection items) {
if (this.verbs == null) {this.verbs = new ArrayList();}
for (String item : items) {this.verbs.add(item);} return (A)this;
}
public A removeFromVerbs(java.lang.String... items) {
if (this.verbs == null) return (A)this;
for (String item : items) { this.verbs.remove(item);} return (A)this;
}
public A removeAllFromVerbs(Collection items) {
if (this.verbs == null) return (A)this;
for (String item : items) { this.verbs.remove(item);} return (A)this;
}
public List getVerbs() {
return this.verbs;
}
public String getVerb(int index) {
return this.verbs.get(index);
}
public String getFirstVerb() {
return this.verbs.get(0);
}
public String getLastVerb() {
return this.verbs.get(verbs.size() - 1);
}
public String getMatchingVerb(Predicate predicate) {
for (String item : verbs) {
if (predicate.test(item)) {
return item;
}
}
return null;
}
public boolean hasMatchingVerb(Predicate predicate) {
for (String item : verbs) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withVerbs(List verbs) {
if (verbs != null) {
this.verbs = new ArrayList();
for (String item : verbs) {
this.addToVerbs(item);
}
} else {
this.verbs = null;
}
return (A) this;
}
public A withVerbs(java.lang.String... verbs) {
if (this.verbs != null) {
this.verbs.clear();
_visitables.remove("verbs");
}
if (verbs != null) {
for (String item : verbs) {
this.addToVerbs(item);
}
}
return (A) this;
}
public boolean hasVerbs() {
return this.verbs != null && !this.verbs.isEmpty();
}
public String getVersion() {
return this.version;
}
public A withVersion(String version) {
this.version = version;
return (A) this;
}
public boolean hasVersion() {
return this.version != null;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1APIResourceFluent that = (V1APIResourceFluent) o;
if (!java.util.Objects.equals(categories, that.categories)) return false;
if (!java.util.Objects.equals(group, that.group)) return false;
if (!java.util.Objects.equals(kind, that.kind)) return false;
if (!java.util.Objects.equals(name, that.name)) return false;
if (!java.util.Objects.equals(namespaced, that.namespaced)) return false;
if (!java.util.Objects.equals(shortNames, that.shortNames)) return false;
if (!java.util.Objects.equals(singularName, that.singularName)) return false;
if (!java.util.Objects.equals(storageVersionHash, that.storageVersionHash)) return false;
if (!java.util.Objects.equals(verbs, that.verbs)) return false;
if (!java.util.Objects.equals(version, that.version)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(categories, group, kind, name, namespaced, shortNames, singularName, storageVersionHash, verbs, version, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (categories != null && !categories.isEmpty()) { sb.append("categories:"); sb.append(categories + ","); }
if (group != null) { sb.append("group:"); sb.append(group + ","); }
if (kind != null) { sb.append("kind:"); sb.append(kind + ","); }
if (name != null) { sb.append("name:"); sb.append(name + ","); }
if (namespaced != null) { sb.append("namespaced:"); sb.append(namespaced + ","); }
if (shortNames != null && !shortNames.isEmpty()) { sb.append("shortNames:"); sb.append(shortNames + ","); }
if (singularName != null) { sb.append("singularName:"); sb.append(singularName + ","); }
if (storageVersionHash != null) { sb.append("storageVersionHash:"); sb.append(storageVersionHash + ","); }
if (verbs != null && !verbs.isEmpty()) { sb.append("verbs:"); sb.append(verbs + ","); }
if (version != null) { sb.append("version:"); sb.append(version); }
sb.append("}");
return sb.toString();
}
public A withNamespaced() {
return withNamespaced(true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy