package io.flutter.embedding.engine.systemchannels;

import androidx.annotation.NonNull;

/* JADX WARN: Failed to restore enum class, 'enum' modifier and super class removed */
/* JADX WARN: Unknown enum class pattern. Please report as an issue! */
/* JADX INFO: loaded from: classes.dex */
public final class PlatformChannel$ClipboardContentFormat {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public static final PlatformChannel$ClipboardContentFormat f28069a;

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public static final /* synthetic */ PlatformChannel$ClipboardContentFormat[] f28070b;

    @NonNull
    private String encodedName;

    /* JADX INFO: Fake field, exist only in values array */
    PlatformChannel$ClipboardContentFormat EF0;

    static {
        PlatformChannel$ClipboardContentFormat platformChannel$ClipboardContentFormat = new PlatformChannel$ClipboardContentFormat("PLAIN_TEXT", 0);
        platformChannel$ClipboardContentFormat.encodedName = "text/plain";
        f28069a = platformChannel$ClipboardContentFormat;
        f28070b = new PlatformChannel$ClipboardContentFormat[]{platformChannel$ClipboardContentFormat};
    }

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

    public static PlatformChannel$ClipboardContentFormat valueOf(String str) {
        return (PlatformChannel$ClipboardContentFormat) Enum.valueOf(PlatformChannel$ClipboardContentFormat.class, str);
    }

    public static PlatformChannel$ClipboardContentFormat[] values() {
        return (PlatformChannel$ClipboardContentFormat[]) f28070b.clone();
    }
}
