Package org.aesh.terminal
Enum Attributes.InputFlag
- All Implemented Interfaces:
Serializable,Comparable<Attributes.InputFlag>,java.lang.constant.Constable
- Enclosing class:
Attributes
Input flags for software input processing.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionMap BREAK to SIGINTR.Map CR to NL.Ignore BREAK condition.Ignore CR.Ignore (discard) parity errors.Ring bell on input queue full.Map NL into CR.Enable checking of parity errors.Strip 8th bit off characters.Maintain state for UTF-8 VERASE.Any character will restart after stop.Enable input flow control.Enable output flow control.Mark parity and framing errors. -
Method Summary
Modifier and TypeMethodDescriptionstatic Attributes.InputFlagReturns the enum constant of this type with the specified name.static Attributes.InputFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
IGNBRK
Ignore BREAK condition. -
BRKINT
Map BREAK to SIGINTR. -
IGNPAR
Ignore (discard) parity errors. -
PARMRK
Mark parity and framing errors. -
INPCK
Enable checking of parity errors. -
ISTRIP
Strip 8th bit off characters. -
INLCR
Map NL into CR. -
IGNCR
Ignore CR. -
ICRNL
Map CR to NL. -
IXON
Enable output flow control. -
IXOFF
Enable input flow control. -
IXANY
Any character will restart after stop. -
IMAXBEL
Ring bell on input queue full. -
IUTF8
Maintain state for UTF-8 VERASE.
-
-
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
-