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 SummaryFields Modifier and Type Field Description static Index<java.lang.String,BossBar.Color>NAMESThe name map.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static BossBar.ColorvalueOf(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- 
PINKpublic static final BossBar.Color PINK Pink.- Since:
- 4.0.0
- Since Minecraft:
- 1.9
 
 - 
BLUEpublic static final BossBar.Color BLUE Blue.- Since:
- 4.0.0
- Since Minecraft:
- 1.9
 
 - 
REDpublic static final BossBar.Color RED Red.- Since:
- 4.0.0
- Since Minecraft:
- 1.9
 
 - 
GREENpublic static final BossBar.Color GREEN Green.- Since:
- 4.0.0
- Since Minecraft:
- 1.9
 
 - 
YELLOWpublic static final BossBar.Color YELLOW Yellow.- Since:
- 4.0.0
- Since Minecraft:
- 1.9
 
 - 
PURPLEpublic static final BossBar.Color PURPLE Purple.- Since:
- 4.0.0
 
 - 
WHITEpublic static final BossBar.Color WHITE White.- Since:
- 4.0.0
- Since Minecraft:
- 1.9
 
 
- 
 - 
Field Detail- 
NAMESpublic static final Index<java.lang.String,BossBar.Color> NAMES The name map.- Since:
- 4.0.0
 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-