- 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
41 lines
1.4 KiB
Java
41 lines
1.4 KiB
Java
package kotlin;
|
|
|
|
import kotlin.enums.EnumEntries;
|
|
import kotlin.enums.EnumEntriesKt;
|
|
|
|
/* JADX WARN: Failed to restore enum class, 'enum' modifier and super class removed */
|
|
/* JADX WARN: Unknown enum class pattern. Please report as an issue! */
|
|
/* loaded from: classes5.dex */
|
|
public final class LazyThreadSafetyMode {
|
|
private static final /* synthetic */ EnumEntries $ENTRIES;
|
|
private static final /* synthetic */ LazyThreadSafetyMode[] $VALUES;
|
|
public static final LazyThreadSafetyMode SYNCHRONIZED = new LazyThreadSafetyMode("SYNCHRONIZED", 0);
|
|
public static final LazyThreadSafetyMode PUBLICATION = new LazyThreadSafetyMode("PUBLICATION", 1);
|
|
public static final LazyThreadSafetyMode NONE = new LazyThreadSafetyMode("NONE", 2);
|
|
|
|
private static final /* synthetic */ LazyThreadSafetyMode[] $values() {
|
|
return new LazyThreadSafetyMode[]{SYNCHRONIZED, PUBLICATION, NONE};
|
|
}
|
|
|
|
public static EnumEntries getEntries() {
|
|
return $ENTRIES;
|
|
}
|
|
|
|
public static LazyThreadSafetyMode valueOf(String str) {
|
|
return (LazyThreadSafetyMode) Enum.valueOf(LazyThreadSafetyMode.class, str);
|
|
}
|
|
|
|
public static LazyThreadSafetyMode[] values() {
|
|
return (LazyThreadSafetyMode[]) $VALUES.clone();
|
|
}
|
|
|
|
private LazyThreadSafetyMode(String str, int i) {
|
|
}
|
|
|
|
static {
|
|
LazyThreadSafetyMode[] $values = $values();
|
|
$VALUES = $values;
|
|
$ENTRIES = EnumEntriesKt.enumEntries($values);
|
|
}
|
|
}
|