Enum Class KeyType

java.lang.Object
java.lang.Enum<KeyType>
org.collebol.engine.input.KeyType
All Implemented Interfaces:
Serializable, Comparable<KeyType>, Constable

public enum KeyType extends Enum<KeyType>
  • Enum Constant Details

    • A

      public static final KeyType A
    • B

      public static final KeyType B
    • C

      public static final KeyType C
    • D

      public static final KeyType D
    • E

      public static final KeyType E
    • F

      public static final KeyType F
    • G

      public static final KeyType G
    • H

      public static final KeyType H
    • I

      public static final KeyType I
    • J

      public static final KeyType J
    • K

      public static final KeyType K
    • L

      public static final KeyType L
    • M

      public static final KeyType M
    • N

      public static final KeyType N
    • O

      public static final KeyType O
    • P

      public static final KeyType P
    • Q

      public static final KeyType Q
    • R

      public static final KeyType R
    • S

      public static final KeyType S
    • T

      public static final KeyType T
    • U

      public static final KeyType U
    • V

      public static final KeyType V
    • W

      public static final KeyType W
    • X

      public static final KeyType X
    • Y

      public static final KeyType Y
    • Z

      public static final KeyType Z
    • NUM_0

      public static final KeyType NUM_0
    • NUM_1

      public static final KeyType NUM_1
    • NUM_2

      public static final KeyType NUM_2
    • NUM_3

      public static final KeyType NUM_3
    • NUM_4

      public static final KeyType NUM_4
    • NUM_5

      public static final KeyType NUM_5
    • NUM_6

      public static final KeyType NUM_6
    • NUM_7

      public static final KeyType NUM_7
    • NUM_8

      public static final KeyType NUM_8
    • NUM_9

      public static final KeyType NUM_9
    • ESCAPE

      public static final KeyType ESCAPE
    • F1

      public static final KeyType F1
    • F2

      public static final KeyType F2
    • F3

      public static final KeyType F3
    • F4

      public static final KeyType F4
    • F5

      public static final KeyType F5
    • F6

      public static final KeyType F6
    • F7

      public static final KeyType F7
    • F8

      public static final KeyType F8
    • F9

      public static final KeyType F9
    • F10

      public static final KeyType F10
    • F11

      public static final KeyType F11
    • F12

      public static final KeyType F12
    • GRAVE_ACCENT

      public static final KeyType GRAVE_ACCENT
    • MINUS

      public static final KeyType MINUS
    • EQUAL

      public static final KeyType EQUAL
    • BACKSPACE

      public static final KeyType BACKSPACE
    • TAB

      public static final KeyType TAB
    • LEFT_BRACKET

      public static final KeyType LEFT_BRACKET
    • RIGHT_BRACKET

      public static final KeyType RIGHT_BRACKET
    • BACKSLASH

      public static final KeyType BACKSLASH
    • SEMICOLON

      public static final KeyType SEMICOLON
    • APOSTROPHE

      public static final KeyType APOSTROPHE
    • ENTER

      public static final KeyType ENTER
    • COMMA

      public static final KeyType COMMA
    • PERIOD

      public static final KeyType PERIOD
    • SLASH

      public static final KeyType SLASH
    • SPACE

      public static final KeyType SPACE
    • CAPS_LOCK

      public static final KeyType CAPS_LOCK
    • LEFT_SHIFT

      public static final KeyType LEFT_SHIFT
    • RIGHT_SHIFT

      public static final KeyType RIGHT_SHIFT
    • LEFT_CONTROL

      public static final KeyType LEFT_CONTROL
    • RIGHT_CONTROL

      public static final KeyType RIGHT_CONTROL
    • LEFT_ALT

      public static final KeyType LEFT_ALT
    • RIGHT_ALT

      public static final KeyType RIGHT_ALT
    • LEFT_SUPER

      public static final KeyType LEFT_SUPER
    • RIGHT_SUPER

      public static final KeyType RIGHT_SUPER
    • INSERT

      public static final KeyType INSERT
    • DELETE

      public static final KeyType DELETE
    • HOME

      public static final KeyType HOME
    • END

      public static final KeyType END
    • PAGE_UP

      public static final KeyType PAGE_UP
    • PAGE_DOWN

      public static final KeyType PAGE_DOWN
    • ARROW_UP

      public static final KeyType ARROW_UP
    • ARROW_DOWN

      public static final KeyType ARROW_DOWN
    • ARROW_LEFT

      public static final KeyType ARROW_LEFT
    • ARROW_RIGHT

      public static final KeyType ARROW_RIGHT
    • NUM_LOCK

      public static final KeyType NUM_LOCK
    • NUMPAD_0

      public static final KeyType NUMPAD_0
    • NUMPAD_1

      public static final KeyType NUMPAD_1
    • NUMPAD_2

      public static final KeyType NUMPAD_2
    • NUMPAD_3

      public static final KeyType NUMPAD_3
    • NUMPAD_4

      public static final KeyType NUMPAD_4
    • NUMPAD_5

      public static final KeyType NUMPAD_5
    • NUMPAD_6

      public static final KeyType NUMPAD_6
    • NUMPAD_7

      public static final KeyType NUMPAD_7
    • NUMPAD_8

      public static final KeyType NUMPAD_8
    • NUMPAD_9

      public static final KeyType NUMPAD_9
    • NUMPAD_DECIMAL

      public static final KeyType NUMPAD_DECIMAL
    • NUMPAD_DIVIDE

      public static final KeyType NUMPAD_DIVIDE
    • NUMPAD_MULTIPLY

      public static final KeyType NUMPAD_MULTIPLY
    • NUMPAD_SUBTRACT

      public static final KeyType NUMPAD_SUBTRACT
    • NUMPAD_ADD

      public static final KeyType NUMPAD_ADD
    • NUMPAD_ENTER

      public static final KeyType NUMPAD_ENTER
    • RIGHT_MOUSE

      public static final KeyType RIGHT_MOUSE
    • LEFT_MOUSE

      public static final KeyType LEFT_MOUSE
  • Method Details

    • values

      public static KeyType[] 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 KeyType 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
    • getValue

      public String getValue()