Files
rr3-apk/decompiled/sources/kotlin/LazyThreadSafetyMode.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

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);
}
}