package com.ifpdos.autotest.lancontrol.module.other.f;

import java.util.Objects;

/* JADX INFO: compiled from: ApiType.java */
/* JADX INFO: loaded from: classes.dex */
public class a {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    private String f2194a;

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    private String f2195b;

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    private int f2196c;

    public a(String str, String str2, int i) {
        this.f2194a = str;
        this.f2195b = str2;
        this.f2196c = i;
    }

    public boolean equals(Object obj) {
        if (obj instanceof a) {
            a aVar = (a) obj;
            if (Objects.equals(this.f2194a, aVar.f2194a) && Objects.equals(this.f2195b, aVar.f2195b) && Objects.equals(Integer.valueOf(this.f2196c), Integer.valueOf(aVar.f2196c))) {
                return true;
            }
        }
        return false;
    }

    public int hashCode() {
        return (Objects.hashCode(this.f2194a) ^ Objects.hashCode(this.f2195b)) ^ Objects.hashCode(Integer.valueOf(this.f2196c));
    }
}
