49 lines
1.3 KiB
Java
49 lines
1.3 KiB
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class SDV {
|
|
private final String a;
|
|
public final Double d;
|
|
public final Long e;
|
|
|
|
public SDV(Long l, String str, Double d) {
|
|
this.e = l;
|
|
this.a = str;
|
|
this.d = d;
|
|
}
|
|
|
|
public final String toString() {
|
|
Long l = this.e;
|
|
String str = this.a;
|
|
Double d = this.d;
|
|
StringBuilder sb = new StringBuilder("Tenor(tenorOption=");
|
|
sb.append(l);
|
|
sb.append(", schemeCode=");
|
|
sb.append(str);
|
|
sb.append(", effectiveInterestRate=");
|
|
sb.append(d);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
Long l = this.e;
|
|
int hashCode = l == null ? 0 : l.hashCode();
|
|
String str = this.a;
|
|
int hashCode2 = str == null ? 0 : str.hashCode();
|
|
Double d = this.d;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (d != null ? d.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof SDV)) {
|
|
return false;
|
|
}
|
|
SDV sdv = (SDV) obj;
|
|
return C14957gcv.b(this.e, sdv.e) && C14957gcv.b((Object) this.a, (Object) sdv.a) && C14957gcv.b(this.d, sdv.d);
|
|
}
|
|
}
|