Package org.aesh.terminal
Enum Attributes.ControlChar
- All Implemented Interfaces:
Serializable,Comparable<Attributes.ControlChar>,java.lang.constant.Constable
- Enclosing class:
Attributes
Control characters for terminal I/O processing.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDiscard output character.Delayed suspend character.End-of-file character.End-of-line character.Second end-of-line character.Erase character.Interrupt character.Kill (line erase) character.Literal next character.Minimum number of characters for non-canonical read.Quit character.Reprint line character.Start output character.Status request character.Stop output character.Suspend character.Timeout for non-canonical read.Word erase character. -
Method Summary
Modifier and TypeMethodDescriptionstatic Attributes.ControlCharReturns the enum constant of this type with the specified name.static Attributes.ControlChar[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
VEOF
End-of-file character. -
VEOL
End-of-line character. -
VEOL2
Second end-of-line character. -
VERASE
Erase character. -
VWERASE
Word erase character. -
VKILL
Kill (line erase) character. -
VREPRINT
Reprint line character. -
VINTR
Interrupt character. -
VQUIT
Quit character. -
VSUSP
Suspend character. -
VDSUSP
Delayed suspend character. -
VSTART
Start output character. -
VSTOP
Stop output character. -
VLNEXT
Literal next character. -
VDISCARD
Discard output character. -
VMIN
Minimum number of characters for non-canonical read. -
VTIME
Timeout for non-canonical read. -
VSTATUS
Status request character.
-
-
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
-