Package org.aesh.terminal
Enum Attributes.LocalFlag
- All Implemented Interfaces:
Serializable,Comparable<Attributes.LocalFlag>,java.lang.constant.Constable
- Enclosing class:
Attributes
Local flags for terminal behavior.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUse alternate WERASE algorithm.Enable echoing.Echo control chars as ^(Char).Visually erase characters.Echo NL after line kill.Visual erase for line kill.Echo NL even if ECHO is off.Visual erase mode for hardcopy.External processing.Output being flushed (state).Canonicalize input lines.Enable DISCARD and LNEXT.Enable signals INTR, QUIT, [D]SUSP.Don't flush after interrupt.No kernel output from VSTATUS.Retype pending input (state).Stop background jobs from output. -
Method Summary
Modifier and TypeMethodDescriptionstatic Attributes.LocalFlagReturns the enum constant of this type with the specified name.static Attributes.LocalFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ECHOKE
Visual erase for line kill. -
ECHOE
Visually erase characters. -
ECHOK
Echo NL after line kill. -
ECHO
Enable echoing. -
ECHONL
Echo NL even if ECHO is off. -
ECHOPRT
Visual erase mode for hardcopy. -
ECHOCTL
Echo control chars as ^(Char). -
ISIG
Enable signals INTR, QUIT, [D]SUSP. -
ICANON
Canonicalize input lines. -
ALTWERASE
Use alternate WERASE algorithm. -
IEXTEN
Enable DISCARD and LNEXT. -
EXTPROC
External processing. -
TOSTOP
Stop background jobs from output. -
FLUSHO
Output being flushed (state). -
NOKERNINFO
No kernel output from VSTATUS. -
PENDIN
Retype pending input (state). -
NOFLSH
Don't flush after interrupt.
-
-
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
-