# Keybind > A Minecraft keybind that can be disabled or enabled on the Lectern client. `gg.lode.lecternapi.api.data.Keybind` --- ## Signature ```java public enum Keybind ``` --- ## Notes The string each one carries is the identifier the client matches on, so a constant only works if the client knows the same spelling. Every value here is one the client maps. --- ## Values | Value | Description | |---|---| | `ATTACK` | | | `USE` | | | `FORWARD` | | | `BACK` | | | `LEFT` | | | `RIGHT` | | | `JUMP` | | | `SNEAK` | | | `SPRINT` | | | `INVENTORY` | | | `DROP` | | | `SWAP_OFFHAND` | | | `PICK_ITEM` | | | `CHAT` | | | `COMMAND` | | | `PLAYER_LIST` | Tab, the player list. | | `ADVANCEMENTS` | | | `TOGGLE_PERSPECTIVE` | | | `SMOOTH_CAMERA` | | | `SPECTATOR_OUTLINES` | | | `SCREENSHOT` | | | `FULLSCREEN` | | | `SAVE_HOTBAR_TOOLBAR` | | | `LOAD_HOTBAR_TOOLBAR` | | | `HOTBAR_1` | | | `HOTBAR_2` | | | `HOTBAR_3` | | | `HOTBAR_4` | | | `HOTBAR_5` | | | `HOTBAR_6` | | | `HOTBAR_7` | | | `HOTBAR_8` | | | `HOTBAR_9` | | --- ## Methods ### key ```java public String key() ``` Returns the string key identifier sent to the client. ---