Package org.aesh.terminal
Enum Attributes.OutputFlag
- All Implemented Interfaces:
Serializable,Comparable<Attributes.OutputFlag>,java.lang.constant.Constable
- Enclosing class:
Attributes
Output flags for software output processing.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBackspace delay.Carriage return delay.Form feed delay.Newline delay.Map CR to NL on output.Fill is DEL, else NUL.Use fill characters for delay.Map NL to CR-NL.NL performs CR function.No CR output at column 0.Discard EOT's (^D) on output.Enable output processing.Expand tabs to spaces.Horizontal tab delay.Vertical tab delay. -
Method Summary
Modifier and TypeMethodDescriptionstatic Attributes.OutputFlagReturns the enum constant of this type with the specified name.static Attributes.OutputFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
OPOST
Enable output processing. -
ONLCR
Map NL to CR-NL. -
OXTABS
Expand tabs to spaces. -
ONOEOT
Discard EOT's (^D) on output. -
OCRNL
Map CR to NL on output. -
ONOCR
No CR output at column 0. -
ONLRET
NL performs CR function. -
NLDLY
Newline delay. -
CRDLY
Carriage return delay. -
FFDLY
Form feed delay. -
BSDLY
Backspace delay. -
VTDLY
Vertical tab delay. -
TABDLY
Horizontal tab delay. -
OFILL
Use fill characters for delay. -
OFDEL
Fill is DEL, else NUL.
-
-
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
-