Package net.minecraft
Enum Class ChatFormatting
- All Implemented Interfaces:
Serializable
,Comparable<ChatFormatting>
,Constable
,StringRepresentable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Nested classes/interfaces inherited from interface net.minecraft.util.StringRepresentable
StringRepresentable.EnumCodec<E extends Enum<E> & StringRepresentable>, StringRepresentable.StringRepresentableCodec<S extends StringRepresentable>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final char
static final com.mojang.serialization.Codec
<ChatFormatting> private final Integer
private static final Map
<String, ChatFormatting> private final int
The numerical index that represents this colorprivate final boolean
private final String
The name of this color/formattingstatic final char
private static final Pattern
private final String
Fields inherited from interface net.minecraft.util.StringRepresentable
PRE_BUILT_MAP_THRESHOLD
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
ChatFormatting
(String pName, char pCode, boolean pIsFormat) private
ChatFormatting
(String pName, char pCode, boolean pIsFormat, int pId, Integer pColor) private
ChatFormatting
(String pName, char pCode, int pId, Integer pColor) -
Method Summary
Modifier and TypeMethodDescriptionprivate static String
static ChatFormatting
getByCode
(char pFormattingCode) static ChatFormatting
getById
(int pIndex) Get a TextFormatting from its color indexstatic ChatFormatting
Gets a value by its friendly name null if the given name does not map to a defined value.char
getChar()
getColor()
int
getId()
getName()
static Collection
<String> getNames
(boolean pGetColor, boolean pGetFancyStyling) Gets all the valid values.boolean
isColor()
boolean
isFormat()
static String
stripFormatting
(String pText) Returns a copy of the given string, with formatting codes stripped away.toString()
static ChatFormatting
Returns the enum constant of this class with the specified name.static ChatFormatting[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BLACK
-
DARK_BLUE
-
DARK_GREEN
-
DARK_AQUA
-
DARK_RED
-
DARK_PURPLE
-
GOLD
-
GRAY
-
DARK_GRAY
-
BLUE
-
GREEN
-
AQUA
-
RED
-
LIGHT_PURPLE
-
YELLOW
-
WHITE
-
OBFUSCATED
-
BOLD
-
STRIKETHROUGH
-
UNDERLINE
-
ITALIC
-
RESET
-
-
Field Details
-
CODEC
-
PREFIX_CODE
public static final char PREFIX_CODE- See Also:
-
FORMATTING_BY_NAME
-
STRIP_FORMATTING_PATTERN
-
name
The name of this color/formatting -
code
private final char code -
isFormat
private final boolean isFormat -
toString
-
id
private final int idThe numerical index that represents this color -
color
-
-
Constructor Details
-
ChatFormatting
-
ChatFormatting
-
ChatFormatting
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
cleanName
-
getChar
public char getChar() -
getId
public int getId() -
isFormat
public boolean isFormat() -
isColor
public boolean isColor() -
getColor
-
getName
-
toString
- Overrides:
toString
in classEnum<ChatFormatting>
-
stripFormatting
@Nullable @Contract("!null->!null;_->_") public static String stripFormatting(@Nullable String pText) Returns a copy of the given string, with formatting codes stripped away. -
getByName
Gets a value by its friendly name null if the given name does not map to a defined value. -
getById
Get a TextFormatting from its color index -
getByCode
-
getNames
Gets all the valid values. -
getSerializedName
- Specified by:
getSerializedName
in interfaceStringRepresentable
-