Package org.jline.utils
Enum Class AttributedCharSequence.ForceMode
- All Implemented Interfaces:
Serializable
,Comparable<AttributedCharSequence.ForceMode>
,Constable
- Enclosing class:
AttributedCharSequence
Enum defining color mode forcing options for ANSI rendering.
This enum specifies how color rendering should be forced when generating ANSI escape sequences, regardless of the terminal's reported capabilities.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionForce the use of 256-color mode (8-bit colors).Force the use of true color mode (24-bit RGB colors).No forcing; use the terminal's reported color capabilities. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static AttributedCharSequence.ForceMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
None
No forcing; use the terminal's reported color capabilities. -
Force256Colors
Force the use of 256-color mode (8-bit colors). -
ForceTrueColors
Force the use of true color mode (24-bit RGB colors).
-
-
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
-