package io.flutter.embedding.engine.systemchannels;

import androidx.annotation.NonNull;
import defpackage.e;

/* JADX INFO: loaded from: classes.dex */
public enum PlatformChannel$SystemUiMode {
    LEAN_BACK("SystemUiMode.leanBack"),
    IMMERSIVE("SystemUiMode.immersive"),
    IMMERSIVE_STICKY("SystemUiMode.immersiveSticky"),
    EDGE_TO_EDGE("SystemUiMode.edgeToEdge");


    @NonNull
    private String encodedName;

    PlatformChannel$SystemUiMode(String str) {
        this.encodedName = str;
    }

    public static PlatformChannel$SystemUiMode a(String str) throws NoSuchFieldException {
        for (PlatformChannel$SystemUiMode platformChannel$SystemUiMode : values()) {
            if (platformChannel$SystemUiMode.encodedName.equals(str)) {
                return platformChannel$SystemUiMode;
            }
        }
        throw new NoSuchFieldException(e.i("No such SystemUiMode: ", str));
    }
}
