package com.ifpdos.udi.sdk.service.doc.mkdocs;

import com.seewo.vcommons.constants.SeewoIntent;
import java.util.List;
import kotlin.Metadata;
import kotlin.jvm.internal.Intrinsics;

/* JADX INFO: compiled from: MkDocsGenerator.kt */
/* JADX INFO: loaded from: classes.dex */
@Metadata(d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0003\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\r\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\b\u0086\b\u0018\u00002\u00020\u0001B-\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\b\u0010\u0005\u001a\u0004\u0018\u00010\u0003\u0012\f\u0010\u0006\u001a\b\u0012\u0004\u0012\u00020\b0\u0007¢\u0006\u0002\u0010\tJ\t\u0010\u0010\u001a\u00020\u0003HÆ\u0003J\t\u0010\u0011\u001a\u00020\u0003HÆ\u0003J\u000b\u0010\u0012\u001a\u0004\u0018\u00010\u0003HÆ\u0003J\u000f\u0010\u0013\u001a\b\u0012\u0004\u0012\u00020\b0\u0007HÆ\u0003J9\u0010\u0014\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\n\b\u0002\u0010\u0005\u001a\u0004\u0018\u00010\u00032\u000e\b\u0002\u0010\u0006\u001a\b\u0012\u0004\u0012\u00020\b0\u0007HÆ\u0001J\u0013\u0010\u0015\u001a\u00020\u00162\b\u0010\u0017\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0018\u001a\u00020\u0019HÖ\u0001J\t\u0010\u001a\u001a\u00020\u0003HÖ\u0001R\u0013\u0010\u0005\u001a\u0004\u0018\u00010\u0003¢\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u000bR\u0017\u0010\u0006\u001a\b\u0012\u0004\u0012\u00020\b0\u0007¢\u0006\b\n\u0000\u001a\u0004\b\f\u0010\rR\u0011\u0010\u0004\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u000e\u0010\u000bR\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u000f\u0010\u000b¨\u0006\u001b"}, d2 = {"Lcom/ifpdos/udi/sdk/service/doc/mkdocs/EnumDefine;", "", SeewoIntent.KEY_FILE_TYPE, "", "simpleType", "comment", "fields", "", "Lcom/ifpdos/udi/sdk/service/doc/mkdocs/EnumValueDefine;", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;)V", "getComment", "()Ljava/lang/String;", "getFields", "()Ljava/util/List;", "getSimpleType", "getType", "component1", "component2", "component3", "component4", "copy", "equals", "", "other", "hashCode", "", "toString", "doc-mkdocs"}, k = 1, mv = {1, 6, 0}, xi = 48)
public final /* data */ class EnumDefine {
    private final String comment;
    private final List<EnumValueDefine> fields;
    private final String simpleType;
    private final String type;

    /* JADX WARN: Multi-variable type inference failed */
    public static /* synthetic */ EnumDefine copy$default(EnumDefine enumDefine, String str, String str2, String str3, List list, int i, Object obj) {
        if ((i & 1) != 0) {
            str = enumDefine.type;
        }
        if ((i & 2) != 0) {
            str2 = enumDefine.simpleType;
        }
        if ((i & 4) != 0) {
            str3 = enumDefine.comment;
        }
        if ((i & 8) != 0) {
            list = enumDefine.fields;
        }
        return enumDefine.copy(str, str2, str3, list);
    }

    /* JADX INFO: renamed from: component1, reason: from getter */
    public final String getType() {
        return this.type;
    }

    /* JADX INFO: renamed from: component2, reason: from getter */
    public final String getSimpleType() {
        return this.simpleType;
    }

    /* JADX INFO: renamed from: component3, reason: from getter */
    public final String getComment() {
        return this.comment;
    }

    public final List<EnumValueDefine> component4() {
        return this.fields;
    }

    public final EnumDefine copy(String type, String simpleType, String comment, List<EnumValueDefine> fields) {
        Intrinsics.checkNotNullParameter(type, "type");
        Intrinsics.checkNotNullParameter(simpleType, "simpleType");
        Intrinsics.checkNotNullParameter(fields, "fields");
        return new EnumDefine(type, simpleType, comment, fields);
    }

    public boolean equals(Object other) {
        if (this == other) {
            return true;
        }
        if (!(other instanceof EnumDefine)) {
            return false;
        }
        EnumDefine enumDefine = (EnumDefine) other;
        return Intrinsics.areEqual(this.type, enumDefine.type) && Intrinsics.areEqual(this.simpleType, enumDefine.simpleType) && Intrinsics.areEqual(this.comment, enumDefine.comment) && Intrinsics.areEqual(this.fields, enumDefine.fields);
    }

    public int hashCode() {
        int iHashCode = ((this.type.hashCode() * 31) + this.simpleType.hashCode()) * 31;
        String str = this.comment;
        return ((iHashCode + (str == null ? 0 : str.hashCode())) * 31) + this.fields.hashCode();
    }

    public String toString() {
        return "EnumDefine(type=" + this.type + ", simpleType=" + this.simpleType + ", comment=" + this.comment + ", fields=" + this.fields + ')';
    }

    public EnumDefine(String type, String simpleType, String str, List<EnumValueDefine> fields) {
        Intrinsics.checkNotNullParameter(type, "type");
        Intrinsics.checkNotNullParameter(simpleType, "simpleType");
        Intrinsics.checkNotNullParameter(fields, "fields");
        this.type = type;
        this.simpleType = simpleType;
        this.comment = str;
        this.fields = fields;
    }

    public final String getType() {
        return this.type;
    }

    public final String getSimpleType() {
        return this.simpleType;
    }

    public final String getComment() {
        return this.comment;
    }

    public final List<EnumValueDefine> getFields() {
        return this.fields;
    }
}
