Files
rr3-apk/decompiled-community/sources/com/vungle/ads/fpd/AgeRange.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

64 lines
1.8 KiB
Java

package com.vungle.ads.fpd;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.ranges.IntRange;
/* loaded from: classes4.dex */
public enum AgeRange {
AGE_18_20(1, new IntRange(18, 20)),
AGE_21_30(2, new IntRange(21, 30)),
AGE_31_40(3, new IntRange(31, 40)),
AGE_41_50(4, new IntRange(41, 50)),
AGE_51_60(5, new IntRange(51, 60)),
AGE_61_70(6, new IntRange(61, 70)),
AGE_71_75(7, new IntRange(71, 75)),
OTHERS(0, new IntRange(Integer.MIN_VALUE, Integer.MAX_VALUE));
public static final Companion Companion = new Companion(null);
private final int id;
private final IntRange range;
public final int getId() {
return this.id;
}
public final IntRange getRange() {
return this.range;
}
AgeRange(int i, IntRange intRange) {
this.id = i;
this.range = intRange;
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
public final AgeRange fromAge$vungle_ads_release(int i) {
AgeRange ageRange;
AgeRange[] values = AgeRange.values();
int length = values.length;
int i2 = 0;
while (true) {
if (i2 >= length) {
ageRange = null;
break;
}
ageRange = values[i2];
IntRange range = ageRange.getRange();
int first = range.getFirst();
if (i <= range.getLast() && first <= i) {
break;
}
i2++;
}
return ageRange == null ? AgeRange.OTHERS : ageRange;
}
}
}