Package org.jline.terminal
Enum Attributes.ControlFlag
- java.lang.Object
-
- java.lang.Enum<Attributes.ControlFlag>
-
- org.jline.terminal.Attributes.ControlFlag
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Attributes.ControlFlag>
- Enclosing class:
- Attributes
public static enum Attributes.ControlFlag extends java.lang.Enum<Attributes.ControlFlag>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CCAR_OFLOW
CCTS_OFLOW
CDSR_OFLOW
CDTR_IFLOW
CIGNORE
CLOCAL
CREAD
CRTS_IFLOW
CS5
CS6
CS7
CS8
CSTOPB
HUPCL
PARENB
PARODD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Attributes.ControlFlag
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Attributes.ControlFlag[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CIGNORE
public static final Attributes.ControlFlag CIGNORE
-
CS5
public static final Attributes.ControlFlag CS5
-
CS6
public static final Attributes.ControlFlag CS6
-
CS7
public static final Attributes.ControlFlag CS7
-
CS8
public static final Attributes.ControlFlag CS8
-
CSTOPB
public static final Attributes.ControlFlag CSTOPB
-
CREAD
public static final Attributes.ControlFlag CREAD
-
PARENB
public static final Attributes.ControlFlag PARENB
-
PARODD
public static final Attributes.ControlFlag PARODD
-
HUPCL
public static final Attributes.ControlFlag HUPCL
-
CLOCAL
public static final Attributes.ControlFlag CLOCAL
-
CCTS_OFLOW
public static final Attributes.ControlFlag CCTS_OFLOW
-
CRTS_IFLOW
public static final Attributes.ControlFlag CRTS_IFLOW
-
CDTR_IFLOW
public static final Attributes.ControlFlag CDTR_IFLOW
-
CDSR_OFLOW
public static final Attributes.ControlFlag CDSR_OFLOW
-
CCAR_OFLOW
public static final Attributes.ControlFlag CCAR_OFLOW
-
-
Method Detail
-
values
public static Attributes.ControlFlag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Attributes.ControlFlag c : Attributes.ControlFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Attributes.ControlFlag valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-