/* * Decompiled with CFR 0.152. */ package net.minecraft.client.gui.components.debug; import net.minecraft.util.StringRepresentable; public enum DebugScreenEntryStatus implements StringRepresentable { ALWAYS_ON("alwaysOn"), IN_OVERLAY("inOverlay"), NEVER("never"); public static final StringRepresentable.EnumCodec CODEC; private final String name; private DebugScreenEntryStatus(String name) { this.name = name; } @Override public String getSerializedName() { return this.name; } static { CODEC = StringRepresentable.fromEnum(DebugScreenEntryStatus::values); } }