All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fabric8.knative.internal.networking.v1alpha1.IngressRuleFluent Maven / Gradle / Ivy

package io.fabric8.knative.internal.networking.v1alpha1;

import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.Nested;
import java.util.ArrayList;
import java.lang.String;
import java.util.function.Predicate;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.util.Collection;
import java.lang.Object;
import java.util.List;

 /**
  * Generated
  */
  @SuppressWarnings(value = "unchecked")
  public class IngressRuleFluent> extends BaseFluent{
  public IngressRuleFluent() {
  }
  public IngressRuleFluent(IngressRule instance) {
    instance = (instance != null ? instance : new IngressRule());

    if (instance != null) {
      this.withHosts(instance.getHosts());
      this.withHttp(instance.getHttp());
      this.withVisibility(instance.getVisibility());
      this.withHosts(instance.getHosts());
      this.withHttp(instance.getHttp());
      this.withVisibility(instance.getVisibility());
    }
  }
  private List hosts = new ArrayList();
  private HTTPIngressRuleValueBuilder http;
  private String visibility;
  public A addToHosts(int index,String item) {
    if (this.hosts == null) {this.hosts = new ArrayList();}
    this.hosts.add(index, item);
    return (A)this;
  }
  public A setToHosts(int index,String item) {
    if (this.hosts == null) {this.hosts = new ArrayList();}
    this.hosts.set(index, item); return (A)this;
  }
  public A addToHosts(java.lang.String... items) {
    if (this.hosts == null) {this.hosts = new ArrayList();}
    for (String item : items) {this.hosts.add(item);} return (A)this;
  }
  public A addAllToHosts(Collection items) {
    if (this.hosts == null) {this.hosts = new ArrayList();}
    for (String item : items) {this.hosts.add(item);} return (A)this;
  }
  public A removeFromHosts(java.lang.String... items) {
    if (this.hosts == null) return (A)this;
    for (String item : items) { this.hosts.remove(item);} return (A)this;
  }
  public A removeAllFromHosts(Collection items) {
    if (this.hosts == null) return (A)this;
    for (String item : items) { this.hosts.remove(item);} return (A)this;
  }
  public List getHosts() {
    return this.hosts;
  }
  public String getHost(int index) {
    return this.hosts.get(index);
  }
  public String getFirstHost() {
    return this.hosts.get(0);
  }
  public String getLastHost() {
    return this.hosts.get(hosts.size() - 1);
  }
  public String getMatchingHost(Predicate predicate) {
    for (String item: hosts) { if(predicate.test(item)){ return item;} } return null;
  }
  public boolean hasMatchingHost(Predicate predicate) {
    for (String item: hosts) { if(predicate.test(item)){ return true;} } return false;
  }
  public A withHosts(List hosts) {
    if (hosts != null) {this.hosts = new ArrayList(); for (String item : hosts){this.addToHosts(item);}} else { this.hosts = null;} return (A) this;
  }
  public A withHosts(java.lang.String... hosts) {
    if (this.hosts != null) {this.hosts.clear(); _visitables.remove("hosts"); }
    if (hosts != null) {for (String item :hosts){ this.addToHosts(item);}} return (A) this;
  }
  public boolean hasHosts() {
    return hosts != null && !hosts.isEmpty();
  }
  public HTTPIngressRuleValue buildHttp() {
    return this.http!=null ?this.http.build():null;
  }
  public A withHttp(HTTPIngressRuleValue http) {
    _visitables.get("http").remove(this.http);
    if (http!=null){ this.http= new HTTPIngressRuleValueBuilder(http); _visitables.get("http").add(this.http);} else { this.http = null; _visitables.get("http").remove(this.http); } return (A) this;
  }
  public boolean hasHttp() {
    return this.http != null;
  }
  public HttpNested withNewHttp() {
    return new HttpNested(null);
  }
  public HttpNested withNewHttpLike(HTTPIngressRuleValue item) {
    return new HttpNested(item);
  }
  public HttpNested editHttp() {
    return withNewHttpLike(java.util.Optional.ofNullable(buildHttp()).orElse(null));
  }
  public HttpNested editOrNewHttp() {
    return withNewHttpLike(java.util.Optional.ofNullable(buildHttp()).orElse(new HTTPIngressRuleValueBuilder().build()));
  }
  public HttpNested editOrNewHttpLike(HTTPIngressRuleValue item) {
    return withNewHttpLike(java.util.Optional.ofNullable(buildHttp()).orElse(item));
  }
  public String getVisibility() {
    return this.visibility;
  }
  public A withVisibility(String visibility) {
    this.visibility=visibility; return (A) this;
  }
  public boolean hasVisibility() {
    return this.visibility != 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;
    IngressRuleFluent that = (IngressRuleFluent) o;
    if (!java.util.Objects.equals(hosts, that.hosts)) return false;

    if (!java.util.Objects.equals(http, that.http)) return false;

    if (!java.util.Objects.equals(visibility, that.visibility)) return false;

    return true;
  }
  public int hashCode() {
    return java.util.Objects.hash(hosts,  http,  visibility,  super.hashCode());
  }
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (hosts != null && !hosts.isEmpty()) { sb.append("hosts:"); sb.append(hosts + ","); }
    if (http != null) { sb.append("http:"); sb.append(http + ","); }
    if (visibility != null) { sb.append("visibility:"); sb.append(visibility); }
    sb.append("}");
    return sb.toString();
  }
  public class HttpNested extends HTTPIngressRuleValueFluent> implements Nested{
    HttpNested(HTTPIngressRuleValue item) {
      this.builder = new HTTPIngressRuleValueBuilder(this, item);
    }
    HTTPIngressRuleValueBuilder builder;
    public N and() {
      return (N) IngressRuleFluent.this.withHttp(builder.build());
    }
    public N endHttp() {
      return and();
    }
    
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy