Uses of Enum
org.aesh.terminal.tty.Capability
Packages that use Capability
-
Uses of Capability in org.aesh.terminal
Fields in org.aesh.terminal with type parameters of type CapabilityModifier and TypeFieldDescriptionprotected final Set<Capability> BaseDevice.boolsSet of boolean capabilities supported by this device.protected final Map<Capability, Integer> BaseDevice.intsMap of numeric capabilities and their values.protected final Map<Capability, String> BaseDevice.stringsMap of string capabilities and their values.Methods in org.aesh.terminal with parameters of type CapabilityModifier and TypeMethodDescriptionbooleanBaseDevice.getBooleanCapability(Capability capability) booleanDevice.getBooleanCapability(Capability capability) Checks if this device has the specified boolean capability.BaseDevice.getNumericCapability(Capability capability) Device.getNumericCapability(Capability capability) Gets the value of a numeric capability.BaseDevice.getStringCapability(Capability capability) Device.getStringCapability(Capability capability) Gets the value of a string capability.int[]BaseDevice.getStringCapabilityAsInts(Capability capability, Object... params) int[]Device.getStringCapabilityAsInts(Capability capability, Object... params) Gets a string capability as an array of code points, with parameter substitution.booleanConnection.put(Capability capability, Object... params) Specify terminal settingsbooleanBaseDevice.puts(Consumer<int[]> output, Capability capability, Object... params) booleanDevice.puts(Consumer<int[]> output, Capability capability, Object... params) Outputs a capability string to the given consumer with parameter substitution. -
Uses of Capability in org.aesh.terminal.tty
Subclasses with type arguments of type Capability in org.aesh.terminal.ttyModifier and TypeClassDescriptionenumTerminal capabilities as defined in the terminfo database.Methods in org.aesh.terminal.tty that return CapabilityModifier and TypeMethodDescriptionstatic CapabilityFinds a capability by its name, terminfo name, or termcap code.static CapabilityReturns the enum constant of this type with the specified name.static Capability[]Capability.values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Capability in org.aesh.terminal.utils
Method parameters in org.aesh.terminal.utils with type arguments of type CapabilityModifier and TypeMethodDescriptionstatic voidInfoCmp.parseInfoCmp(String capabilities, Set<Capability> bools, Map<Capability, Integer> ints, Map<Capability, String> strings) Parse an infocmp capabilities string and populate the provided collections.static voidInfoCmp.parseInfoCmp(String capabilities, Set<Capability> bools, Map<Capability, Integer> ints, Map<Capability, String> strings) Parse an infocmp capabilities string and populate the provided collections.