Package net.kyori.adventure.bossbar
Enum BossBar.Color
- java.lang.Object
-
- java.lang.Enum<BossBar.Color>
-
- net.kyori.adventure.bossbar.BossBar.Color
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BossBar.Color>
- Enclosing interface:
- BossBar
public static enum BossBar.Color extends java.lang.Enum<BossBar.Color>
One of the colors the bar component of aBossBar
.This color does not affect the color of the bar's name text.
The exact color for each named value may vary slightly based on game version.
- Since:
- 4.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static Index<java.lang.String,BossBar.Color>
NAMES
The name map.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BossBar.Color
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BossBar.Color[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PINK
public static final BossBar.Color PINK
Pink.- Since:
- 4.0.0
- Since Minecraft:
- 1.9
-
BLUE
public static final BossBar.Color BLUE
Blue.- Since:
- 4.0.0
- Since Minecraft:
- 1.9
-
RED
public static final BossBar.Color RED
Red.- Since:
- 4.0.0
- Since Minecraft:
- 1.9
-
GREEN
public static final BossBar.Color GREEN
Green.- Since:
- 4.0.0
- Since Minecraft:
- 1.9
-
YELLOW
public static final BossBar.Color YELLOW
Yellow.- Since:
- 4.0.0
- Since Minecraft:
- 1.9
-
PURPLE
public static final BossBar.Color PURPLE
Purple.- Since:
- 4.0.0
-
WHITE
public static final BossBar.Color WHITE
White.- Since:
- 4.0.0
- Since Minecraft:
- 1.9
-
-
Field Detail
-
NAMES
public static final Index<java.lang.String,BossBar.Color> NAMES
The name map.- Since:
- 4.0.0
-
-
Method Detail
-
values
public static BossBar.Color[] values()
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 (BossBar.Color c : BossBar.Color.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BossBar.Color valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-