package o; /* loaded from: classes3.dex */ public final class ETe { public final Integer b; public final Integer e; public ETe(Integer num, Integer num2) { this.b = num; this.e = num2; } public final String toString() { Integer num = this.b; Integer num2 = this.e; StringBuilder sb = new StringBuilder("Experience(year="); sb.append(num); sb.append(", month="); sb.append(num2); sb.append(")"); return sb.toString(); } public final int hashCode() { Integer num = this.b; int hashCode = num == null ? 0 : num.hashCode(); Integer num2 = this.e; return (hashCode * 31) + (num2 != null ? num2.hashCode() : 0); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof ETe)) { return false; } ETe eTe = (ETe) obj; return C14957gcv.b(this.b, eTe.b) && C14957gcv.b(this.e, eTe.e); } }