@Environment(value=CLIENT) static enum RenderLayer.OutlineMode extends Enum<RenderLayer.OutlineMode>
Enum Constant and Description |
---|
AFFECTS_OUTLINE |
IS_OUTLINE |
NONE |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static RenderLayer.OutlineMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderLayer.OutlineMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderLayer.OutlineMode NONE
public static final RenderLayer.OutlineMode IS_OUTLINE
public static final RenderLayer.OutlineMode AFFECTS_OUTLINE
private final String name
public static RenderLayer.OutlineMode[] values()
for (RenderLayer.OutlineMode c : RenderLayer.OutlineMode.values()) System.out.println(c);
public static RenderLayer.OutlineMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<RenderLayer.OutlineMode>