Enum BossBarFlag
- java.lang.Object
-
- java.lang.Enum<BossBarFlag>
-
- com.velocitypowered.api.util.bossbar.BossBarFlag
-
- All Implemented Interfaces:
Serializable
,Comparable<BossBarFlag>
@Deprecated public enum BossBarFlag extends Enum<BossBarFlag>
Deprecated.Replaced withBossBar.Flag
Represents anyBossBar
's flags.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATE_WORLD_FOG
Deprecated.DARKEN_SCREEN
Deprecated.PLAY_BOSS_MUSIC
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static BossBarFlag
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static BossBarFlag[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DARKEN_SCREEN
public static final BossBarFlag DARKEN_SCREEN
Deprecated.
-
PLAY_BOSS_MUSIC
public static final BossBarFlag PLAY_BOSS_MUSIC
Deprecated.
-
CREATE_WORLD_FOG
public static final BossBarFlag CREATE_WORLD_FOG
Deprecated.
-
-
Method Detail
-
values
public static BossBarFlag[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BossBarFlag c : BossBarFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BossBarFlag valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-