Enum LineMode.ModeBit
- All Implemented Interfaces:
Serializable,Comparable<LineMode.ModeBit>,java.lang.constant.Constable
- Enclosing class:
LineMode
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic List<LineMode.ModeBit> toModeList(int val) static LineMode.ModeBitvalueOf(int val) Returns the enum constant of this type with the specified name.static LineMode.ModeBitReturns the enum constant of this type with the specified name.static LineMode.ModeBit[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EDIT
When set, the client side of the connection should process all input lines, performing any editing functions, and only send completed lines to the remote side. When unset, client side should not process any input from the user, and the server side should take care of all character processing that needs to be done. -
TRAPSIG
-
MODE_ACK
-
SOFT_TAB
-
LIT_ECHO
-
-
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
-
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:
val- 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
-
toModeList
-