Simulate pressing many keys at once in a "chord". Takes a sequence of Keys.XXXX or strings; appends each to a string, adds the chord termination key (Keys.NULL), and returns it. Note: Keys.NULL signals release of modifier keys like CTRL/ALT/SHIFT via keyup events. @param value characters to sen
(CharSequence... value)
| 180 | * @return String representation of the char sequence |
| 181 | */ |
| 182 | public static String chord(CharSequence... value) { |
| 183 | return chord(List.of(value)); |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Overload of {@link #chord(CharSequence...)} that accepts an iterable. |