Package org.jline.terminal
Enum Attributes.InputFlag
- java.lang.Object
-
- java.lang.Enum<Attributes.InputFlag>
-
- org.jline.terminal.Attributes.InputFlag
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Attributes.InputFlag>
- Enclosing class:
- Attributes
public static enum Attributes.InputFlag extends java.lang.Enum<Attributes.InputFlag>
Input flags - software input processing
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Attributes.InputFlag
valueOf(java.lang.String name)
Returns 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 Detail
-
IGNBRK
public static final Attributes.InputFlag IGNBRK
-
BRKINT
public static final Attributes.InputFlag BRKINT
-
IGNPAR
public static final Attributes.InputFlag IGNPAR
-
PARMRK
public static final Attributes.InputFlag PARMRK
-
INPCK
public static final Attributes.InputFlag INPCK
-
ISTRIP
public static final Attributes.InputFlag ISTRIP
-
INLCR
public static final Attributes.InputFlag INLCR
-
IGNCR
public static final Attributes.InputFlag IGNCR
-
ICRNL
public static final Attributes.InputFlag ICRNL
-
IXON
public static final Attributes.InputFlag IXON
-
IXOFF
public static final Attributes.InputFlag IXOFF
-
IXANY
public static final Attributes.InputFlag IXANY
-
IMAXBEL
public static final Attributes.InputFlag IMAXBEL
-
IUTF8
public static final Attributes.InputFlag IUTF8
-
INORMEOL
public static final Attributes.InputFlag INORMEOL
-
-
Method Detail
-
values
public static Attributes.InputFlag[] 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.InputFlag c : Attributes.InputFlag.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.InputFlag 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
-
-