public enum KeyWedgeMode extends java.lang.Enum<KeyWedgeMode>
KeyWedgeMode is an enumeration defining the
different KeyboardWedge input methodologies.
The type is one of:
| TEXT_INJECTION | Inject the data, in form of text, directly in the text area |
| KEY_PRESSURE | Emulate the pressure of the keyboard keys |
| COMMIT_TEXT | Inject the printable characters in form of text directly in the text area and emulate the pressure of keyboard keys for not printable keys |
| Enum Constant and Description |
|---|
COMMIT_TEXT
Commit Text
|
KEY_PRESSURE
Key Pressure
|
TEXT_INJECTION
Text Injection
|
| Modifier and Type | Method and Description |
|---|---|
static KeyWedgeMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyWedgeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyWedgeMode TEXT_INJECTION
public static final KeyWedgeMode KEY_PRESSURE
public static final KeyWedgeMode COMMIT_TEXT
public static KeyWedgeMode[] values()
for (KeyWedgeMode c : KeyWedgeMode.values()) System.out.println(c);
public static KeyWedgeMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null