Package org.jline.terminal
Enum Attributes.LocalFlag
- java.lang.Object
-
- java.lang.Enum<Attributes.LocalFlag>
-
- org.jline.terminal.Attributes.LocalFlag
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Attributes.LocalFlag>
- Enclosing class:
- Attributes
public static enum Attributes.LocalFlag extends java.lang.Enum<Attributes.LocalFlag>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Attributes.LocalFlag
valueOf(java.lang.String name)
Returns 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 Detail
-
ECHOKE
public static final Attributes.LocalFlag ECHOKE
-
ECHOE
public static final Attributes.LocalFlag ECHOE
-
ECHOK
public static final Attributes.LocalFlag ECHOK
-
ECHO
public static final Attributes.LocalFlag ECHO
-
ECHONL
public static final Attributes.LocalFlag ECHONL
-
ECHOPRT
public static final Attributes.LocalFlag ECHOPRT
-
ECHOCTL
public static final Attributes.LocalFlag ECHOCTL
-
ISIG
public static final Attributes.LocalFlag ISIG
-
ICANON
public static final Attributes.LocalFlag ICANON
-
ALTWERASE
public static final Attributes.LocalFlag ALTWERASE
-
IEXTEN
public static final Attributes.LocalFlag IEXTEN
-
EXTPROC
public static final Attributes.LocalFlag EXTPROC
-
TOSTOP
public static final Attributes.LocalFlag TOSTOP
-
FLUSHO
public static final Attributes.LocalFlag FLUSHO
-
NOKERNINFO
public static final Attributes.LocalFlag NOKERNINFO
-
PENDIN
public static final Attributes.LocalFlag PENDIN
-
NOFLSH
public static final Attributes.LocalFlag NOFLSH
-
-
Method Detail
-
values
public static Attributes.LocalFlag[] 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.LocalFlag c : Attributes.LocalFlag.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.LocalFlag 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
-
-