io.alauda.kubernetes.api.model.NodeSelectorRequirementFluentImpl Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.ArrayList;
import java.lang.String;
import io.alauda.kubernetes.api.builder.Predicate;
import javax.validation.Valid;
import io.alauda.kubernetes.api.builder.BaseFluent;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;
public class NodeSelectorRequirementFluentImpl> extends io.alauda.kubernetes.api.builder.BaseFluent implements NodeSelectorRequirementFluent{
private String key;
private String operator;
private List values = new ArrayList();
public NodeSelectorRequirementFluentImpl(){
}
public NodeSelectorRequirementFluentImpl(NodeSelectorRequirement instance){
this.withKey(instance.getKey());
this.withOperator(instance.getOperator());
this.withValues(instance.getValues());
}
public String getKey(){
return this.key;
}
public A withKey(String key){
this.key=key; return (A) this;
}
public Boolean hasKey(){
return this.key!=null;
}
public String getOperator(){
return this.operator;
}
public A withOperator(String operator){
this.operator=operator; return (A) this;
}
public Boolean hasOperator(){
return this.operator!=null;
}
public A addToValues(int index,String item){
this.values.add(index, item); return (A)this;
}
public A setToValues(int index,String item){
this.values.set(index, item); return (A)this;
}
public A addToValues(String... items){
for (String item : items) {this.values.add(item);} return (A)this;
}
public A addAllToValues(Collection items){
for (String item : items) {this.values.add(item);} return (A)this;
}
public A removeFromValues(String... items){
for (String item : items) {this.values.remove(item);} return (A)this;
}
public A removeAllFromValues(Collection items){
for (String item : items) {this.values.remove(item);} return (A)this;
}
public List getValues(){
return this.values;
}
public String getValue(int index){
return this.values.get(index);
}
public String getFirstValue(){
return this.values.get(0);
}
public String getLastValue(){
return this.values.get(values.size() - 1);
}
public String getMatchingValue(io.alauda.kubernetes.api.builder.Predicate predicate){
for (String item: values) { if(predicate.apply(item)){return item;} } return null;
}
public A withValues(List values){
this.values.clear();
if (values != null) {for (String item : values){this.addToValues(item);}} return (A) this;
}
public A withValues(String... values){
this.values.clear(); if (values != null) {for (String item :values){ this.addToValues(item);}} return (A) this;
}
public Boolean hasValues(){
return values!= null && !values.isEmpty();
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
NodeSelectorRequirementFluentImpl that = (NodeSelectorRequirementFluentImpl) o;
if (key != null ? !key.equals(that.key) :that.key != null) return false;
if (operator != null ? !operator.equals(that.operator) :that.operator != null) return false;
if (values != null ? !values.equals(that.values) :that.values != null) return false;
return true;
}
}