Files
rr3-apk/decompiled/sources/com/applovin/impl/yd.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

68 lines
1.6 KiB
Java

package com.applovin.impl;
import com.ironsource.mediationsdk.logger.IronSourceError;
/* loaded from: classes.dex */
public class yd {
public final Object a;
public final int b;
public final int c;
public final long d;
public final int e;
public boolean a() {
return this.b != -1;
}
public yd(yd ydVar) {
this.a = ydVar.a;
this.b = ydVar.b;
this.c = ydVar.c;
this.d = ydVar.d;
this.e = ydVar.e;
}
public yd a(Object obj) {
return this.a.equals(obj) ? this : new yd(obj, this.b, this.c, this.d, this.e);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof yd)) {
return false;
}
yd ydVar = (yd) obj;
return this.a.equals(ydVar.a) && this.b == ydVar.b && this.c == ydVar.c && this.d == ydVar.d && this.e == ydVar.e;
}
public int hashCode() {
return ((((((((this.a.hashCode() + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31) + this.b) * 31) + this.c) * 31) + ((int) this.d)) * 31) + this.e;
}
public yd(Object obj) {
this(obj, -1L);
}
public yd(Object obj, int i, int i2, long j) {
this(obj, i, i2, j, -1);
}
private yd(Object obj, int i, int i2, long j, int i3) {
this.a = obj;
this.b = i;
this.c = i2;
this.d = j;
this.e = i3;
}
public yd(Object obj, long j) {
this(obj, -1, -1, j, -1);
}
public yd(Object obj, long j, int i) {
this(obj, -1, -1, j, i);
}
}