- 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
43 lines
1.3 KiB
Java
43 lines
1.3 KiB
Java
package kotlin.collections;
|
|
|
|
import com.facebook.internal.AnalyticsEvents;
|
|
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 State {
|
|
private static final /* synthetic */ EnumEntries $ENTRIES;
|
|
private static final /* synthetic */ State[] $VALUES;
|
|
public static final State Ready = new State("Ready", 0);
|
|
public static final State NotReady = new State("NotReady", 1);
|
|
public static final State Done = new State("Done", 2);
|
|
public static final State Failed = new State(AnalyticsEvents.PARAMETER_DIALOG_OUTCOME_VALUE_FAILED, 3);
|
|
|
|
private static final /* synthetic */ State[] $values() {
|
|
return new State[]{Ready, NotReady, Done, Failed};
|
|
}
|
|
|
|
public static EnumEntries getEntries() {
|
|
return $ENTRIES;
|
|
}
|
|
|
|
public static State valueOf(String str) {
|
|
return (State) Enum.valueOf(State.class, str);
|
|
}
|
|
|
|
public static State[] values() {
|
|
return (State[]) $VALUES.clone();
|
|
}
|
|
|
|
private State(String str, int i) {
|
|
}
|
|
|
|
static {
|
|
State[] $values = $values();
|
|
$VALUES = $values;
|
|
$ENTRIES = EnumEntriesKt.enumEntries($values);
|
|
}
|
|
}
|