> For the complete documentation index, see [llms.txt](https://noahcoetsee.gitbook.io/javadraw/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://noahcoetsee.gitbook.io/javadraw/quick-reference/key.md).

# Key

The Key class allows for input comparisons to be as easy as possible.

Keys are supplied in the keyboard input methods on the Window class.

```java
public void keyDown(Key key) {
    if (key == Key.SPACE) {
        print("Space key pressed!");
    }
}
```
