package io.flutter.embedding.engine.systemchannels;

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

/* JADX INFO: loaded from: classes.dex */
public enum PlatformChannel$SystemUiOverlay {
    TOP_OVERLAYS("SystemUiOverlay.top"),
    BOTTOM_OVERLAYS("SystemUiOverlay.bottom");


    @NonNull
    private String encodedName;

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

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