Uses of Class
org.jline.terminal.Attributes.InputFlag
-
Packages that use Attributes.InputFlag Package Description org.jline.terminal JLine Terminal API - Core abstractions for terminal operations across different platforms. -
-
Uses of Attributes.InputFlag in org.jline.terminal
Methods in org.jline.terminal that return Attributes.InputFlag Modifier and Type Method Description static Attributes.InputFlagAttributes.InputFlag. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Attributes.InputFlag[]Attributes.InputFlag. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jline.terminal that return types with arguments of type Attributes.InputFlag Modifier and Type Method Description java.util.EnumSet<Attributes.InputFlag>Attributes. getInputFlags()Returns the set of input flags currently enabled.Methods in org.jline.terminal with parameters of type Attributes.InputFlag Modifier and Type Method Description booleanAttributes. getInputFlag(Attributes.InputFlag flag)Checks if a specific input flag is enabled.voidAttributes. setInputFlag(Attributes.InputFlag flag, boolean value)Sets a specific input flag to the specified value.Method parameters in org.jline.terminal with type arguments of type Attributes.InputFlag Modifier and Type Method Description voidAttributes. setInputFlags(java.util.EnumSet<Attributes.InputFlag> flags)Sets the input flags to the specified set of flags.voidAttributes. setInputFlags(java.util.EnumSet<Attributes.InputFlag> flags, boolean value)Sets multiple input flags to the same value.
-