Class AWTKeyStroke
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
KeyStroke
public class AWTKeyStroke extends Object implements Serializable
AWTKeyStroke represents a key action on the keyboard, or equivalent input device. AWTKeyStrokes can correspond to only a press or release of a particular key, just as KEY_PRESSED and KEY_RELEASED KeyEvents do; alternately, they can correspond to typing a specific Java character, just as KEY_TYPED KeyEvents do. In all cases, AWTKeyStrokes can specify modifiers (alt, shift, control, meta, altGraph, or a combination thereof) which must be present during the action for an exact match. AWTKeyStrokes are immutable, and are intended to be unique. Client code should never create an AWTKeyStroke on its own, but should instead use a variant of getAWTKeyStroke. Client use of these factory methods allows the AWTKeyStroke implementation to cache and share instances efficiently.
- Since:
- 1.4
- See Also:
Constructor Summary
| Modifier | Constructor | Description |
|---|---|---|
protected |
Constructs an AWTKeyStroke with default values. |
|
protected |
Constructs an AWTKeyStroke with the specified values. |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
final boolean |
equals |
Returns true if this object is identical to the specified object. |
static AWTKeyStroke |
getAWTKeyStroke |
Returns a shared instance of an AWTKeyStroke that represents a KEY_TYPED event for the specified character. |
static AWTKeyStroke |
getAWTKeyStroke |
Returns a shared instance of an AWTKeyStroke, given a numeric key code and a set of modifiers. |
static AWTKeyStroke |
getAWTKeyStroke |
Returns a shared instance of an AWTKeyStroke, given a numeric key code and a set of modifiers, specifying whether the key is activated when it is pressed or released. |
static AWTKeyStroke |
getAWTKeyStroke |
Returns a shared instance of an AWTKeyStroke that represents a KEY_TYPED event for the specified Character object and a set of modifiers. |
static AWTKeyStroke |
getAWTKeyStroke |
Parses a string and returns an AWTKeyStroke. |
static AWTKeyStroke |
getAWTKeyStrokeForEvent |
Returns an AWTKeyStroke which represents the stroke which generated a given KeyEvent. |
final char |
getKeyChar() |
Returns the character for this AWTKeyStroke. |
final int |
getKeyCode() |
Returns the numeric key code for this AWTKeyStroke. |
final int |
getKeyEventType() |
Returns the type of KeyEvent which corresponds to this AWTKeyStroke. |
final int |
getModifiers() |
Returns the modifier keys for this AWTKeyStroke. |
int |
hashCode() |
Returns a numeric value for this object that is likely to be unique, making it a good choice as the index value in a hash table. |
final boolean |
isOnKeyRelease() |
Returns whether this AWTKeyStroke represents a key release. |
protected Object |
readResolve() |
Returns a cached instance of AWTKeyStroke (or a subclass of AWTKeyStroke) which is equal to this instance. |
protected static void |
registerSubclass |
Deprecated. |
String |
toString() |
Returns a string that displays and identifies this object's properties. |
Constructor Details
AWTKeyStroke
protected AWTKeyStroke()
AWTKeyStroke with default values. The default values used are: | Property | Default Value |
|---|---|
| Key Char |
KeyEvent.CHAR_UNDEFINED |
| Key Code |
KeyEvent.VK_UNDEFINED |
| Modifiers | none |
| On key release? |
false |
AWTKeyStrokes should not be constructed by client code. Use a variant of getAWTKeyStroke instead.- See Also:
AWTKeyStroke
protected AWTKeyStroke(char keyChar, int keyCode, int modifiers, boolean onKeyRelease)
AWTKeyStroke with the specified values. AWTKeyStrokes should not be constructed by client code. Use a variant of getAWTKeyStroke instead.- Parameters:
-
keyChar- the character value for a keyboard key -
keyCode- the key code for thisAWTKeyStroke -
modifiers- a bitwise-ored combination of any modifiers -
onKeyRelease-trueif thisAWTKeyStrokecorresponds to a key release;falseotherwise - See Also:
Method Details
registerSubclass
@Deprecated protected static void registerSubclass(Class<?> subclass)
- Parameters:
-
subclass- the new Class of which the factory methods should create instances
getAWTKeyStroke
public static AWTKeyStroke getAWTKeyStroke(char keyChar)
AWTKeyStroke that represents a KEY_TYPED event for the specified character.- Parameters:
-
keyChar- the character value for a keyboard key - Returns:
- an
AWTKeyStrokeobject for that key
getAWTKeyStroke
public static AWTKeyStroke getAWTKeyStroke(Character keyChar, int modifiers)
AWTKeyStroke that represents a KEY_TYPED event for the specified Character object and a set of modifiers. Note that the first parameter is of type Character rather than char. This is to avoid inadvertent clashes with calls to getAWTKeyStroke(int keyCode, int modifiers). The modifiers consist of any combination of following:- java.awt.event.InputEvent.SHIFT_DOWN_MASK
- java.awt.event.InputEvent.CTRL_DOWN_MASK
- java.awt.event.InputEvent.META_DOWN_MASK
- java.awt.event.InputEvent.ALT_DOWN_MASK
- java.awt.event.InputEvent.ALT_GRAPH_DOWN_MASK
- java.awt.event.InputEvent.SHIFT_MASK
- java.awt.event.InputEvent.CTRL_MASK
- java.awt.event.InputEvent.META_MASK
- java.awt.event.InputEvent.ALT_MASK
- java.awt.event.InputEvent.ALT_GRAPH_MASK
- Parameters:
-
keyChar- the Character object for a keyboard character -
modifiers- a bitwise-ored combination of any modifiers - Returns:
- an
AWTKeyStrokeobject for that key - Throws:
-
IllegalArgumentException- ifkeyCharisnull - See Also:
getAWTKeyStroke
public static AWTKeyStroke getAWTKeyStroke(int keyCode, int modifiers, boolean onKeyRelease)
AWTKeyStroke, given a numeric key code and a set of modifiers, specifying whether the key is activated when it is pressed or released. The "virtual key" constants defined in java.awt.event.KeyEvent can be used to specify the key code. For example:
-
java.awt.event.KeyEvent.VK_ENTER -
java.awt.event.KeyEvent.VK_TAB -
java.awt.event.KeyEvent.VK_SPACE
java.awt.event.KeyEvent.getExtendedKeyCodeForChar. The modifiers consist of any combination of:- java.awt.event.InputEvent.SHIFT_DOWN_MASK
- java.awt.event.InputEvent.CTRL_DOWN_MASK
- java.awt.event.InputEvent.META_DOWN_MASK
- java.awt.event.InputEvent.ALT_DOWN_MASK
- java.awt.event.InputEvent.ALT_GRAPH_DOWN_MASK
- java.awt.event.InputEvent.SHIFT_MASK
- java.awt.event.InputEvent.CTRL_MASK
- java.awt.event.InputEvent.META_MASK
- java.awt.event.InputEvent.ALT_MASK
- java.awt.event.InputEvent.ALT_GRAPH_MASK
- Parameters:
-
keyCode- an int specifying the numeric code for a keyboard key -
modifiers- a bitwise-ored combination of any modifiers -
onKeyRelease-trueif theAWTKeyStrokeshould represent a key release;falseotherwise - Returns:
- an AWTKeyStroke object for that key
- See Also:
getAWTKeyStroke
public static AWTKeyStroke getAWTKeyStroke(int keyCode, int modifiers)
AWTKeyStroke, given a numeric key code and a set of modifiers. The returned AWTKeyStroke will correspond to a key press. The "virtual key" constants defined in java.awt.event.KeyEvent can be used to specify the key code. For example:
-
java.awt.event.KeyEvent.VK_ENTER -
java.awt.event.KeyEvent.VK_TAB -
java.awt.event.KeyEvent.VK_SPACE
- java.awt.event.InputEvent.SHIFT_DOWN_MASK
- java.awt.event.InputEvent.CTRL_DOWN_MASK
- java.awt.event.InputEvent.META_DOWN_MASK
- java.awt.event.InputEvent.ALT_DOWN_MASK
- java.awt.event.InputEvent.ALT_GRAPH_DOWN_MASK
- java.awt.event.InputEvent.SHIFT_MASK
- java.awt.event.InputEvent.CTRL_MASK
- java.awt.event.InputEvent.META_MASK
- java.awt.event.InputEvent.ALT_MASK
- java.awt.event.InputEvent.ALT_GRAPH_MASK
- Parameters:
-
keyCode- an int specifying the numeric code for a keyboard key -
modifiers- a bitwise-ored combination of any modifiers - Returns:
- an
AWTKeyStrokeobject for that key - See Also:
getAWTKeyStrokeForEvent
public static AWTKeyStroke getAWTKeyStrokeForEvent(KeyEvent anEvent)
AWTKeyStroke which represents the stroke which generated a given KeyEvent. This method obtains the keyChar from a KeyTyped event, and the keyCode from a KeyPressed or KeyReleased event. The KeyEvent modifiers are obtained for all three types of KeyEvent.
- Parameters:
-
anEvent- theKeyEventfrom which to obtain theAWTKeyStroke - Returns:
- the
AWTKeyStrokethat precipitated the event - Throws:
-
NullPointerException- ifanEventis null
getAWTKeyStroke
public static AWTKeyStroke getAWTKeyStroke(String s)
AWTKeyStroke. The string must have the following syntax:
<modifiers>* (<typedID> | <pressedReleasedID>)
modifiers := shift | control | ctrl | meta | alt | altGraph
typedID := typed <typedKey>
typedKey := string of length 1 giving Unicode character.
pressedReleasedID := (pressed | released) key
key := KeyEvent key code name, i.e. the name following "VK_".
If typed, pressed or released is not specified, pressed is assumed. Here are some examples:
"INSERT" => getAWTKeyStroke(KeyEvent.VK_INSERT, 0);
"control DELETE" => getAWTKeyStroke(KeyEvent.VK_DELETE, InputEvent.CTRL_MASK);
"alt shift X" => getAWTKeyStroke(KeyEvent.VK_X, InputEvent.ALT_MASK | InputEvent.SHIFT_MASK);
"alt shift released X" => getAWTKeyStroke(KeyEvent.VK_X, InputEvent.ALT_MASK | InputEvent.SHIFT_MASK, true);
"typed a" => getAWTKeyStroke('a');
- Parameters:
-
s- a String formatted as described above - Returns:
- an
AWTKeyStrokeobject for that String - Throws:
-
IllegalArgumentException- ifsisnull, or is formatted incorrectly
getKeyChar
public final char getKeyChar()
AWTKeyStroke.- Returns:
- a char value
- See Also:
getKeyCode
public final int getKeyCode()
AWTKeyStroke.- Returns:
- an int containing the key code value
- See Also:
getModifiers
public final int getModifiers()
AWTKeyStroke.- Returns:
- an int containing the modifiers
- See Also:
isOnKeyRelease
public final boolean isOnKeyRelease()
AWTKeyStroke represents a key release.- Returns:
-
trueif thisAWTKeyStrokerepresents a key release;falseotherwise - See Also:
getKeyEventType
public final int getKeyEventType()
KeyEvent which corresponds to this AWTKeyStroke.- Returns:
-
KeyEvent.KEY_PRESSED,KeyEvent.KEY_TYPED, orKeyEvent.KEY_RELEASED - See Also:
hashCode
public int hashCode()
equals
public final boolean equals(Object anObject)
toString
public String toString()
String returned by this method can be passed as a parameter to getAWTKeyStroke(String) to produce a key stroke equal to this key stroke.readResolve
protected Object readResolve() throws ObjectStreamException
AWTKeyStroke (or a subclass of AWTKeyStroke) which is equal to this instance.- Returns:
- a cached instance which is equal to this instance
- Throws:
-
ObjectStreamException- if a serialization problem occurs
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/java/awt/AWTKeyStroke.html