| Enum Constant | Description | 
|---|---|
| CREATE_FOG | Creates fog around the world. | 
| DARKEN_SKY | Darkens the sky like during fighting a wither. | 
| PLAY_BOSS_MUSIC | Tells the client to play the Ender Dragon boss music. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static BarFlag | valueOf(java.lang.String name) | Returns the enum constant of this type with the specified name. | 
| static BarFlag[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final BarFlag DARKEN_SKY
public static final BarFlag PLAY_BOSS_MUSIC
public static final BarFlag CREATE_FOG
public static BarFlag[] values()
for (BarFlag c : BarFlag.values()) System.out.println(c);
public static BarFlag valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2018. All rights reserved.