Package net.kyori.adventure.text.format
Enum TextDecoration
- All Implemented Interfaces:
Serializable
,Comparable<TextDecoration>
,ComponentBuilderApplicable
,StyleBuilderApplicable
,TextFormat
public enum TextDecoration extends Enum<TextDecoration> implements StyleBuilderApplicable, TextFormat
An enumeration of decorations which may be applied to a
Component
.- Since:
- 4.0.0
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TextDecoration.State
A state that aTextDecoration
can be in. -
Enum Constant Summary
Enum Constants Enum Constant Description BOLD
A decoration which makes text appear bold.ITALIC
A decoration which makes text appear in italics.OBFUSCATED
A decoration which makes text obfuscated/unreadable.STRIKETHROUGH
A decoration which makes text have a strike through it.UNDERLINED
A decoration which makes text have an underline. -
Field Summary
Fields Modifier and Type Field Description static Index<String,TextDecoration>
NAMES
The name map. -
Method Summary
Modifier and Type Method Description void
styleApply(@NonNull Style.Builder style)
Applies tostyle
.@NonNull String
toString()
static TextDecoration
valueOf(String name)
Returns the enum constant of this type with the specified name.static TextDecoration[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
Methods inherited from interface net.kyori.adventure.text.format.StyleBuilderApplicable
componentBuilderApply
-
Enum Constant Details
-
OBFUSCATED
A decoration which makes text obfuscated/unreadable.- Since:
- 4.0.0
-
BOLD
A decoration which makes text appear bold.- Since:
- 4.0.0
-
STRIKETHROUGH
A decoration which makes text have a strike through it.- Since:
- 4.0.0
-
UNDERLINED
A decoration which makes text have an underline.- Since:
- 4.0.0
-
ITALIC
A decoration which makes text appear in italics.- Since:
- 4.0.0
-
-
Field Details
-
NAMES
The name map.- Since:
- 4.0.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
styleApply
Description copied from interface:StyleBuilderApplicable
Applies tostyle
.- Specified by:
styleApply
in interfaceStyleBuilderApplicable
- Parameters:
style
- the style builder
-
toString
- Overrides:
toString
in classEnum<TextDecoration>
-