what-the-bank/sources/o/orE.java

89 lines
2.5 KiB
Java

package o;
import com.airbnb.deeplinkdispatch.UrlTreeKt;
import com.google.android.play.core.install.InstallState;
/* loaded from: classes.dex */
public final class orE extends InstallState {
private final int a;
private final long b;
private final long c;
private final int d;
private final String e;
public orE(int i, long j, long j2, int i2, String str) {
this.d = i;
this.b = j;
this.c = j2;
this.a = i2;
if (str == null) {
throw new NullPointerException("Null packageName");
}
this.e = str;
}
public final boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof InstallState)) {
return false;
}
InstallState installState = (InstallState) obj;
return this.d == installState.a() && this.b == installState.d() && this.c == installState.b() && this.a == installState.e() && this.e.equals(installState.c());
}
public final int hashCode() {
int i = this.d;
long j = this.b;
long j2 = this.c;
int i2 = (int) ((j2 >>> 32) ^ j2);
return ((((((((i ^ 1000003) * 1000003) ^ ((int) (j ^ (j >>> 32)))) * 1000003) ^ i2) * 1000003) ^ this.a) * 1000003) ^ this.e.hashCode();
}
public final String toString() {
int i = this.d;
long j = this.b;
long j2 = this.c;
int i2 = this.a;
String str = this.e;
StringBuilder sb = new StringBuilder("InstallState{installStatus=");
sb.append(i);
sb.append(", bytesDownloaded=");
sb.append(j);
sb.append(", totalBytesToDownload=");
sb.append(j2);
sb.append(", installErrorCode=");
sb.append(i2);
sb.append(", packageName=");
sb.append(str);
sb.append(UrlTreeKt.componentParamSuffix);
return sb.toString();
}
@Override // com.google.android.play.core.install.InstallState
public final long b() {
return this.c;
}
@Override // com.google.android.play.core.install.InstallState
public final String c() {
return this.e;
}
@Override // com.google.android.play.core.install.InstallState
public final int a() {
return this.d;
}
@Override // com.google.android.play.core.install.InstallState
public final int e() {
return this.a;
}
@Override // com.google.android.play.core.install.InstallState
public final long d() {
return this.b;
}
}