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

io.fabric8.kubernetes.api.model.GroupVersionKindBuilder Maven / Gradle / Ivy

There is a newer version: 7.0.1
Show newest version
package io.fabric8.kubernetes.api.model;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;

public class GroupVersionKindBuilder extends GroupVersionKindFluentImpl implements VisitableBuilder{

    GroupVersionKindFluent fluent;
    Boolean validationEnabled;

    public GroupVersionKindBuilder(){
            this(true);
    }
    public GroupVersionKindBuilder(Boolean validationEnabled){
            this(new GroupVersionKind(), validationEnabled);
    }
    public GroupVersionKindBuilder(GroupVersionKindFluent fluent){
            this(fluent, true);
    }
    public GroupVersionKindBuilder(GroupVersionKindFluent fluent,Boolean validationEnabled){
            this(fluent, new GroupVersionKind(), validationEnabled);
    }
    public GroupVersionKindBuilder(GroupVersionKindFluent fluent,GroupVersionKind instance){
            this(fluent, instance, true);
    }
    public GroupVersionKindBuilder(GroupVersionKindFluent fluent,GroupVersionKind instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withGroup(instance.getGroup()); 
            fluent.withKind(instance.getKind()); 
            fluent.withVersion(instance.getVersion()); 
            this.validationEnabled = validationEnabled; 
    }
    public GroupVersionKindBuilder(GroupVersionKind instance){
            this(instance,true);
    }
    public GroupVersionKindBuilder(GroupVersionKind instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withGroup(instance.getGroup()); 
            this.withKind(instance.getKind()); 
            this.withVersion(instance.getVersion()); 
            this.validationEnabled = validationEnabled; 
    }

    public GroupVersionKind build(){
            GroupVersionKind buildable = new GroupVersionKind(fluent.getGroup(),fluent.getKind(),fluent.getVersion());
            return buildable;
    }

    public boolean equals(Object o){
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            if (!super.equals(o)) return false;
            GroupVersionKindBuilder that = (GroupVersionKindBuilder) o;
            if (fluent != null &&fluent != this ? !fluent.equals(that.fluent) :that.fluent != null &&fluent != this ) return false;

            if (validationEnabled != null ? !validationEnabled.equals(that.validationEnabled) :that.validationEnabled != null) return false;
            return true;
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy