Enum Class KeyCode

java.lang.Object
java.lang.Enum<KeyCode>
dev.engine.core.input.KeyCode
All Implemented Interfaces:
BooleanSource, InputSource, Serializable, Comparable<KeyCode>, Constable

public enum KeyCode extends Enum<KeyCode> implements BooleanSource
  • Enum Constant Details

    • A

      public static final KeyCode A
    • B

      public static final KeyCode B
    • C

      public static final KeyCode C
    • D

      public static final KeyCode D
    • E

      public static final KeyCode E
    • F

      public static final KeyCode F
    • G

      public static final KeyCode G
    • H

      public static final KeyCode H
    • I

      public static final KeyCode I
    • J

      public static final KeyCode J
    • K

      public static final KeyCode K
    • L

      public static final KeyCode L
    • M

      public static final KeyCode M
    • N

      public static final KeyCode N
    • O

      public static final KeyCode O
    • P

      public static final KeyCode P
    • Q

      public static final KeyCode Q
    • R

      public static final KeyCode R
    • S

      public static final KeyCode S
    • T

      public static final KeyCode T
    • U

      public static final KeyCode U
    • V

      public static final KeyCode V
    • W

      public static final KeyCode W
    • X

      public static final KeyCode X
    • Y

      public static final KeyCode Y
    • Z

      public static final KeyCode Z
    • NUM_0

      public static final KeyCode NUM_0
    • NUM_1

      public static final KeyCode NUM_1
    • NUM_2

      public static final KeyCode NUM_2
    • NUM_3

      public static final KeyCode NUM_3
    • NUM_4

      public static final KeyCode NUM_4
    • NUM_5

      public static final KeyCode NUM_5
    • NUM_6

      public static final KeyCode NUM_6
    • NUM_7

      public static final KeyCode NUM_7
    • NUM_8

      public static final KeyCode NUM_8
    • NUM_9

      public static final KeyCode NUM_9
    • NUMPAD_0

      public static final KeyCode NUMPAD_0
    • NUMPAD_1

      public static final KeyCode NUMPAD_1
    • NUMPAD_2

      public static final KeyCode NUMPAD_2
    • NUMPAD_3

      public static final KeyCode NUMPAD_3
    • NUMPAD_4

      public static final KeyCode NUMPAD_4
    • NUMPAD_5

      public static final KeyCode NUMPAD_5
    • NUMPAD_6

      public static final KeyCode NUMPAD_6
    • NUMPAD_7

      public static final KeyCode NUMPAD_7
    • NUMPAD_8

      public static final KeyCode NUMPAD_8
    • NUMPAD_9

      public static final KeyCode NUMPAD_9
    • NUMPAD_ADD

      public static final KeyCode NUMPAD_ADD
    • NUMPAD_SUBTRACT

      public static final KeyCode NUMPAD_SUBTRACT
    • NUMPAD_MULTIPLY

      public static final KeyCode NUMPAD_MULTIPLY
    • NUMPAD_DIVIDE

      public static final KeyCode NUMPAD_DIVIDE
    • NUMPAD_ENTER

      public static final KeyCode NUMPAD_ENTER
    • NUMPAD_DECIMAL

      public static final KeyCode NUMPAD_DECIMAL
    • F1

      public static final KeyCode F1
    • F2

      public static final KeyCode F2
    • F3

      public static final KeyCode F3
    • F4

      public static final KeyCode F4
    • F5

      public static final KeyCode F5
    • F6

      public static final KeyCode F6
    • F7

      public static final KeyCode F7
    • F8

      public static final KeyCode F8
    • F9

      public static final KeyCode F9
    • F10

      public static final KeyCode F10
    • F11

      public static final KeyCode F11
    • F12

      public static final KeyCode F12
    • SPACE

      public static final KeyCode SPACE
    • ENTER

      public static final KeyCode ENTER
    • ESCAPE

      public static final KeyCode ESCAPE
    • TAB

      public static final KeyCode TAB
    • BACKSPACE

      public static final KeyCode BACKSPACE
    • DELETE

      public static final KeyCode DELETE
    • INSERT

      public static final KeyCode INSERT
    • HOME

      public static final KeyCode HOME
    • END

      public static final KeyCode END
    • PAGE_UP

      public static final KeyCode PAGE_UP
    • PAGE_DOWN

      public static final KeyCode PAGE_DOWN
    • LEFT

      public static final KeyCode LEFT
    • UP

      public static final KeyCode UP
    • DOWN

      public static final KeyCode DOWN
    • LEFT_SHIFT

      public static final KeyCode LEFT_SHIFT
    • RIGHT_SHIFT

      public static final KeyCode RIGHT_SHIFT
    • LEFT_CTRL

      public static final KeyCode LEFT_CTRL
    • RIGHT_CTRL

      public static final KeyCode RIGHT_CTRL
    • LEFT_ALT

      public static final KeyCode LEFT_ALT
    • RIGHT_ALT

      public static final KeyCode RIGHT_ALT
    • LEFT_SUPER

      public static final KeyCode LEFT_SUPER
    • RIGHT_SUPER

      public static final KeyCode RIGHT_SUPER
    • CAPS_LOCK

      public static final KeyCode CAPS_LOCK
    • NUM_LOCK

      public static final KeyCode NUM_LOCK
    • SCROLL_LOCK

      public static final KeyCode SCROLL_LOCK
    • PAUSE

      public static final KeyCode PAUSE
    • COMMA

      public static final KeyCode COMMA
    • PERIOD

      public static final KeyCode PERIOD
    • SLASH

      public static final KeyCode SLASH
    • SEMICOLON

      public static final KeyCode SEMICOLON
    • APOSTROPHE

      public static final KeyCode APOSTROPHE
    • LEFT_BRACKET

      public static final KeyCode LEFT_BRACKET
    • RIGHT_BRACKET

      public static final KeyCode RIGHT_BRACKET
    • BACKSLASH

      public static final KeyCode BACKSLASH
    • GRAVE_ACCENT

      public static final KeyCode GRAVE_ACCENT
    • MINUS

      public static final KeyCode MINUS
    • EQUALS

      public static final KeyCode EQUALS
    • UNKNOWN

      public static final KeyCode UNKNOWN
  • Method Details

    • values

      public static KeyCode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static KeyCode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null