
annotations.io.fabric8.docker.api.model.SearchResultFluentImpl Maven / Gradle / Ivy
package io.fabric8.docker.api.model;
import java.util.HashMap;
import java.io.Serializable;
import java.util.Map;
import java.util.Map;
import java.util.AbstractMap;
import io.fabric8.docker.api.builder.Visitable;
import io.fabric8.docker.api.builder.BaseFluent;
import io.fabric8.docker.api.builder.Fluent;
public class SearchResultFluentImpl> extends BaseFluent implements SearchResultFluent{
String description; Boolean isAutomated; Boolean isOfficial; Boolean isTrusted; String name; Integer starCount; Map additionalProperties = new HashMap();
public SearchResultFluentImpl(){
}
public SearchResultFluentImpl( SearchResult instance ){
this.withDescription(instance.getDescription()); this.withIsAutomated(instance.getIsAutomated()); this.withIsOfficial(instance.getIsOfficial()); this.withIsTrusted(instance.getIsTrusted()); this.withName(instance.getName()); this.withStarCount(instance.getStarCount());
}
public String getDescription(){
return this.description;
}
public T withDescription( String description){
this.description=description; return (T) this;
}
public Boolean isIsAutomated(){
return this.isAutomated;
}
public T withIsAutomated( Boolean isAutomated){
this.isAutomated=isAutomated; return (T) this;
}
public Boolean isIsOfficial(){
return this.isOfficial;
}
public T withIsOfficial( Boolean isOfficial){
this.isOfficial=isOfficial; return (T) this;
}
public Boolean isIsTrusted(){
return this.isTrusted;
}
public T withIsTrusted( Boolean isTrusted){
this.isTrusted=isTrusted; return (T) this;
}
public String getName(){
return this.name;
}
public T withName( String name){
this.name=name; return (T) this;
}
public Integer getStarCount(){
return this.starCount;
}
public T withStarCount( Integer starCount){
this.starCount=starCount; return (T) this;
}
public T addToAdditionalProperties( String key, Object value){
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (T)this;
}
public T addToAdditionalProperties( Map map){
if(map != null) { this.additionalProperties.putAll(map);} return (T)this;
}
public T removeFromAdditionalProperties( String key){
if(key != null) {this.additionalProperties.remove(key);} return (T)this;
}
public T removeFromAdditionalProperties( Map map){
if(map != null) { for(Object key : map.keySet()) {this.additionalProperties.remove(key);}} return (T)this;
}
public Map getAdditionalProperties(){
return this.additionalProperties;
}
public T withAdditionalProperties( Map additionalProperties){
this.additionalProperties.clear();if (additionalProperties != null) {this.additionalProperties.putAll(additionalProperties);} return (T) this;
}
public boolean equals( Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SearchResultFluentImpl that = (SearchResultFluentImpl) o;
if (description != null ? !description.equals(that.description) :that.description != null) return false;
if (isAutomated != null ? !isAutomated.equals(that.isAutomated) :that.isAutomated != null) return false;
if (isOfficial != null ? !isOfficial.equals(that.isOfficial) :that.isOfficial != null) return false;
if (isTrusted != null ? !isTrusted.equals(that.isTrusted) :that.isTrusted != null) return false;
if (name != null ? !name.equals(that.name) :that.name != null) return false;
if (starCount != null ? !starCount.equals(that.starCount) :that.starCount != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy