Uses of Class
org.jline.terminal.Attributes.ControlChar
-
Packages that use Attributes.ControlChar Package Description org.jline.terminal JLine Terminal API - Core abstractions for terminal operations across different platforms. -
-
Uses of Attributes.ControlChar in org.jline.terminal
Methods in org.jline.terminal that return Attributes.ControlChar Modifier and Type Method Description static Attributes.ControlChar
Attributes.ControlChar. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Attributes.ControlChar[]
Attributes.ControlChar. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jline.terminal that return types with arguments of type Attributes.ControlChar Modifier and Type Method Description java.util.EnumMap<Attributes.ControlChar,java.lang.Integer>
Attributes. getControlChars()
Returns the map of control characters and their values.Methods in org.jline.terminal with parameters of type Attributes.ControlChar Modifier and Type Method Description int
Attributes. getControlChar(Attributes.ControlChar c)
Returns the value of a specific control character.void
Attributes. setControlChar(Attributes.ControlChar c, int value)
Sets a specific control character to the specified value.Method parameters in org.jline.terminal with type arguments of type Attributes.ControlChar Modifier and Type Method Description void
Attributes. setControlChars(java.util.EnumMap<Attributes.ControlChar,java.lang.Integer> chars)
Sets the control characters to the specified map of values.
-