- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
107 lines
3.7 KiB
Java
107 lines
3.7 KiB
Java
package com.ironsource;
|
|
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class l9 {
|
|
private final String a;
|
|
private final String b;
|
|
private final String c;
|
|
private final String d;
|
|
|
|
public l9() {
|
|
this(null, null, null, null, 15, null);
|
|
}
|
|
|
|
public l9(String customNetworkAdapterName, String customRewardedVideoAdapterName, String customInterstitialAdapterName, String customBannerAdapterName) {
|
|
Intrinsics.checkNotNullParameter(customNetworkAdapterName, "customNetworkAdapterName");
|
|
Intrinsics.checkNotNullParameter(customRewardedVideoAdapterName, "customRewardedVideoAdapterName");
|
|
Intrinsics.checkNotNullParameter(customInterstitialAdapterName, "customInterstitialAdapterName");
|
|
Intrinsics.checkNotNullParameter(customBannerAdapterName, "customBannerAdapterName");
|
|
this.a = customNetworkAdapterName;
|
|
this.b = customRewardedVideoAdapterName;
|
|
this.c = customInterstitialAdapterName;
|
|
this.d = customBannerAdapterName;
|
|
}
|
|
|
|
public /* synthetic */ l9(String str, String str2, String str3, String str4, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this((i & 1) != 0 ? "" : str, (i & 2) != 0 ? "" : str2, (i & 4) != 0 ? "" : str3, (i & 8) != 0 ? "" : str4);
|
|
}
|
|
|
|
public static /* synthetic */ l9 a(l9 l9Var, String str, String str2, String str3, String str4, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
str = l9Var.a;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
str2 = l9Var.b;
|
|
}
|
|
if ((i & 4) != 0) {
|
|
str3 = l9Var.c;
|
|
}
|
|
if ((i & 8) != 0) {
|
|
str4 = l9Var.d;
|
|
}
|
|
return l9Var.a(str, str2, str3, str4);
|
|
}
|
|
|
|
public final l9 a(String customNetworkAdapterName, String customRewardedVideoAdapterName, String customInterstitialAdapterName, String customBannerAdapterName) {
|
|
Intrinsics.checkNotNullParameter(customNetworkAdapterName, "customNetworkAdapterName");
|
|
Intrinsics.checkNotNullParameter(customRewardedVideoAdapterName, "customRewardedVideoAdapterName");
|
|
Intrinsics.checkNotNullParameter(customInterstitialAdapterName, "customInterstitialAdapterName");
|
|
Intrinsics.checkNotNullParameter(customBannerAdapterName, "customBannerAdapterName");
|
|
return new l9(customNetworkAdapterName, customRewardedVideoAdapterName, customInterstitialAdapterName, customBannerAdapterName);
|
|
}
|
|
|
|
public final String a() {
|
|
return this.a;
|
|
}
|
|
|
|
public final String b() {
|
|
return this.b;
|
|
}
|
|
|
|
public final String c() {
|
|
return this.c;
|
|
}
|
|
|
|
public final String d() {
|
|
return this.d;
|
|
}
|
|
|
|
public final String e() {
|
|
return this.d;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof l9)) {
|
|
return false;
|
|
}
|
|
l9 l9Var = (l9) obj;
|
|
return Intrinsics.areEqual(this.a, l9Var.a) && Intrinsics.areEqual(this.b, l9Var.b) && Intrinsics.areEqual(this.c, l9Var.c) && Intrinsics.areEqual(this.d, l9Var.d);
|
|
}
|
|
|
|
public final String f() {
|
|
return this.c;
|
|
}
|
|
|
|
public final String g() {
|
|
return this.a;
|
|
}
|
|
|
|
public final String h() {
|
|
return this.b;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (((((this.a.hashCode() * 31) + this.b.hashCode()) * 31) + this.c.hashCode()) * 31) + this.d.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "CustomAdapterSettings(customNetworkAdapterName=" + this.a + ", customRewardedVideoAdapterName=" + this.b + ", customInterstitialAdapterName=" + this.c + ", customBannerAdapterName=" + this.d + ')';
|
|
}
|
|
}
|