| boolean isPressed() | Returns true if the button with the defined Key is being pressed, false if not. |
| void setPressed([boolean value) | Defines if the button with the defined Key is being pressed or not to be "value" argument. |
| boolean isDown() | Returns true if the button with the defined Key was pressed, false if not. |
| void setDown(boolean value) | Defines if the button with the defined Key was pressed or not to be "value" argument. |
| boolean isUp() | Returns true if the button with the defined Key was pressed and released, false if not. |
| void setUp(boolean value) | Defines if the button with the defined Key was pressed and released or not to be "value" argument. |
| String getName() | Returns the name of the Key. |