@Environment(value=CLIENT) public static enum BackgroundRenderer.FogType extends Enum<BackgroundRenderer.FogType>
Enum Constant and Description |
---|
FOG_SKY |
FOG_TERRAIN |
Modifier and Type | Method and Description |
---|---|
static BackgroundRenderer.FogType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BackgroundRenderer.FogType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BackgroundRenderer.FogType FOG_SKY
public static final BackgroundRenderer.FogType FOG_TERRAIN
public static BackgroundRenderer.FogType[] values()
for (BackgroundRenderer.FogType c : BackgroundRenderer.FogType.values()) System.out.println(c);
public static BackgroundRenderer.FogType 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 null