31 lines
669 B
Java
31 lines
669 B
Java
/*
|
|
* 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<DebugScreenEntryStatus> 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);
|
|
}
|
|
}
|
|
|