package com.ironsource; import com.vungle.ads.internal.signals.SignalManager; import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.jvm.internal.Intrinsics; import kotlin.jvm.internal.SourceDebugExtension; /* loaded from: classes2.dex */ public enum g8 { Day("d", SignalManager.TWENTY_FOUR_HOURS_MILLIS), Hour("h", 3600000), Second("s", 1000); public static final a c = new a(null); private final String a; private final long b; @SourceDebugExtension({"SMAP\nCappingTimeUnit.kt\nKotlin\n*S Kotlin\n*F\n+ 1 CappingTimeUnit.kt\ncom/ironsource/services/capping/CappingTimeUnit$Companion\n+ 2 _Arrays.kt\nkotlin/collections/ArraysKt___ArraysKt\n*L\n1#1,16:1\n1282#2,2:17\n*S KotlinDebug\n*F\n+ 1 CappingTimeUnit.kt\ncom/ironsource/services/capping/CappingTimeUnit$Companion\n*L\n10#1:17,2\n*E\n"}) public static final class a { private a() { } public /* synthetic */ a(DefaultConstructorMarker defaultConstructorMarker) { this(); } public final g8 a(String str) { for (g8 g8Var : g8.values()) { if (Intrinsics.areEqual(g8Var.a, str)) { return g8Var; } } return null; } } g8(String str, long j) { this.a = str; this.b = j; } public static /* synthetic */ long a(g8 g8Var, Integer num, int i, Object obj) { if (obj != null) { throw new UnsupportedOperationException("Super calls with default arguments not supported in this target, function: inMilliseconds"); } if ((i & 1) != 0) { num = 1; } return g8Var.a(num); } public final long a(Integer num) { return (num != null ? num.intValue() : 1) * this.b; } }