- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
129 lines
2.9 KiB
Java
129 lines
2.9 KiB
Java
package com.ironsource;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
import kotlin.collections.MapsKt__MapsKt;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class r4 {
|
|
private final String a;
|
|
private final boolean b;
|
|
private boolean c;
|
|
private String d;
|
|
private Map<String, ? extends Object> e;
|
|
private com.ironsource.mediationsdk.h f;
|
|
private Map<String, Object> g;
|
|
|
|
public r4(String name, boolean z) {
|
|
Map<String, ? extends Object> emptyMap;
|
|
Intrinsics.checkNotNullParameter(name, "name");
|
|
this.a = name;
|
|
this.b = z;
|
|
this.d = "";
|
|
emptyMap = MapsKt__MapsKt.emptyMap();
|
|
this.e = emptyMap;
|
|
this.g = new HashMap();
|
|
}
|
|
|
|
public static /* synthetic */ r4 a(r4 r4Var, String str, boolean z, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
str = r4Var.a;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
z = r4Var.b;
|
|
}
|
|
return r4Var.a(str, z);
|
|
}
|
|
|
|
public final r4 a(String name, boolean z) {
|
|
Intrinsics.checkNotNullParameter(name, "name");
|
|
return new r4(name, z);
|
|
}
|
|
|
|
public final String a() {
|
|
return this.a;
|
|
}
|
|
|
|
public final void a(com.ironsource.mediationsdk.h hVar) {
|
|
this.f = hVar;
|
|
}
|
|
|
|
public final void a(String str) {
|
|
Intrinsics.checkNotNullParameter(str, "<set-?>");
|
|
this.d = str;
|
|
}
|
|
|
|
public final void a(Map<String, Object> map) {
|
|
Intrinsics.checkNotNullParameter(map, "<set-?>");
|
|
this.g = map;
|
|
}
|
|
|
|
public final void a(boolean z) {
|
|
this.c = z;
|
|
}
|
|
|
|
public final void b(Map<String, ? extends Object> map) {
|
|
Intrinsics.checkNotNullParameter(map, "<set-?>");
|
|
this.e = map;
|
|
}
|
|
|
|
public final boolean b() {
|
|
return this.b;
|
|
}
|
|
|
|
public final Map<String, Object> c() {
|
|
return this.g;
|
|
}
|
|
|
|
public final com.ironsource.mediationsdk.h d() {
|
|
return this.f;
|
|
}
|
|
|
|
public final boolean e() {
|
|
return this.b;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof r4)) {
|
|
return false;
|
|
}
|
|
r4 r4Var = (r4) obj;
|
|
return Intrinsics.areEqual(this.a, r4Var.a) && this.b == r4Var.b;
|
|
}
|
|
|
|
public final Map<String, Object> f() {
|
|
return this.e;
|
|
}
|
|
|
|
public final String g() {
|
|
return this.a;
|
|
}
|
|
|
|
public final String h() {
|
|
return this.d;
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public int hashCode() {
|
|
int hashCode = this.a.hashCode() * 31;
|
|
boolean z = this.b;
|
|
int i = z;
|
|
if (z != 0) {
|
|
i = 1;
|
|
}
|
|
return hashCode + i;
|
|
}
|
|
|
|
public final boolean i() {
|
|
return this.c;
|
|
}
|
|
|
|
public String toString() {
|
|
return "AuctionInstanceInfo(name=" + this.a + ", bidder=" + this.b + ')';
|
|
}
|
|
}
|