Enum Class AwtKey

java.lang.Object
java.lang.Enum<AwtKey>
com.ardor3d.input.awt.AwtKey
All Implemented Interfaces:
Serializable, Comparable<AwtKey>, Constable

public enum AwtKey extends Enum<AwtKey>
Enum used for translations between AWT key codes and Ardor3D Key instances.
  • Enum Constant Details

    • ZERO

      public static final AwtKey ZERO
    • ONE

      public static final AwtKey ONE
    • TWO

      public static final AwtKey TWO
    • THREE

      public static final AwtKey THREE
    • FOUR

      public static final AwtKey FOUR
    • FIVE

      public static final AwtKey FIVE
    • SIX

      public static final AwtKey SIX
    • SEVEN

      public static final AwtKey SEVEN
    • EIGHT

      public static final AwtKey EIGHT
    • NINE

      public static final AwtKey NINE
    • A

      public static final AwtKey A
    • ADD

      public static final AwtKey ADD
    • AT

      public static final AwtKey AT
    • B

      public static final AwtKey B
    • BACK_QUOTE

      public static final AwtKey BACK_QUOTE
    • BACK_SPACE

      public static final AwtKey BACK_SPACE
    • BACK_SLASH

      public static final AwtKey BACK_SLASH
    • C

      public static final AwtKey C
    • CAPS_LOCK

      public static final AwtKey CAPS_LOCK
    • CIRCUMFLEX

      public static final AwtKey CIRCUMFLEX
    • COLON

      public static final AwtKey COLON
    • COMMA

      public static final AwtKey COMMA
    • CONVERT

      public static final AwtKey CONVERT
    • D

      public static final AwtKey D
    • DECIMAL

      public static final AwtKey DECIMAL
    • DELETE

      public static final AwtKey DELETE
    • DIVIDE

      public static final AwtKey DIVIDE
    • DOWN

      public static final AwtKey DOWN
    • E

      public static final AwtKey E
    • END

      public static final AwtKey END
    • EQUALS

      public static final AwtKey EQUALS
    • ESCAPE

      public static final AwtKey ESCAPE
    • F

      public static final AwtKey F
    • F1

      public static final AwtKey F1
    • F2

      public static final AwtKey F2
    • F3

      public static final AwtKey F3
    • F4

      public static final AwtKey F4
    • F5

      public static final AwtKey F5
    • F6

      public static final AwtKey F6
    • F7

      public static final AwtKey F7
    • F8

      public static final AwtKey F8
    • F9

      public static final AwtKey F9
    • F10

      public static final AwtKey F10
    • F11

      public static final AwtKey F11
    • F12

      public static final AwtKey F12
    • F13

      public static final AwtKey F13
    • F14

      public static final AwtKey F14
    • F15

      public static final AwtKey F15
    • G

      public static final AwtKey G
    • H

      public static final AwtKey H
    • HOME

      public static final AwtKey HOME
    • I

      public static final AwtKey I
    • INSERT

      public static final AwtKey INSERT
    • J

      public static final AwtKey J
    • K

      public static final AwtKey K
    • KANA

      public static final AwtKey KANA
    • KANJI

      public static final AwtKey KANJI
    • L

      public static final AwtKey L
    • OPEN_BRACKET

      public static final AwtKey OPEN_BRACKET
    • CONTROL

      public static final AwtKey CONTROL
    • LEFT

      public static final AwtKey LEFT
    • ALT

      public static final AwtKey ALT
    • META

      public static final AwtKey META
    • SHIFT

      public static final AwtKey SHIFT
    • M

      public static final AwtKey M
    • MINUS

      public static final AwtKey MINUS
    • MULTIPLY

      public static final AwtKey MULTIPLY
    • N

      public static final AwtKey N
    • PAGE_DOWN

      public static final AwtKey PAGE_DOWN
    • NONCONVERT

      public static final AwtKey NONCONVERT
    • NUM_LOCK

      public static final AwtKey NUM_LOCK
    • NUMPAD0

      public static final AwtKey NUMPAD0
    • NUMPAD1

      public static final AwtKey NUMPAD1
    • NUMPAD2

      public static final AwtKey NUMPAD2
    • NUMPAD3

      public static final AwtKey NUMPAD3
    • NUMPAD4

      public static final AwtKey NUMPAD4
    • NUMPAD5

      public static final AwtKey NUMPAD5
    • NUMPAD6

      public static final AwtKey NUMPAD6
    • NUMPAD7

      public static final AwtKey NUMPAD7
    • NUMPAD8

      public static final AwtKey NUMPAD8
    • NUMPAD9

      public static final AwtKey NUMPAD9
    • O

      public static final AwtKey O
    • P

      public static final AwtKey P
    • PAUSE

      public static final AwtKey PAUSE
    • PERIOD

      public static final AwtKey PERIOD
    • PAGE_UP

      public static final AwtKey PAGE_UP
    • Q

      public static final AwtKey Q
    • QUOTE

      public static final AwtKey QUOTE
    • R

      public static final AwtKey R
    • CLOSE_BRACKET

      public static final AwtKey CLOSE_BRACKET
    • ENTER

      public static final AwtKey ENTER
    • S

      public static final AwtKey S
    • SCROLL_LOCK

      public static final AwtKey SCROLL_LOCK
    • SEMICOLON

      public static final AwtKey SEMICOLON
    • SLASH

      public static final AwtKey SLASH
    • SPACE

      public static final AwtKey SPACE
    • STOP

      public static final AwtKey STOP
    • PRINTSCREEN

      public static final AwtKey PRINTSCREEN
    • T

      public static final AwtKey T
    • TAB

      public static final AwtKey TAB
    • U

      public static final AwtKey U
    • UNDERSCORE

      public static final AwtKey UNDERSCORE
    • UP

      public static final AwtKey UP
    • V

      public static final AwtKey V
    • W

      public static final AwtKey W
    • X

      public static final AwtKey X
    • Y

      public static final AwtKey Y
    • Z

      public static final AwtKey Z
    • UNDEFINED

      public static final AwtKey UNDEFINED
  • Method Details

    • values

      public static AwtKey[] 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 AwtKey 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
    • findByCode

      public static Key findByCode(int awtCode)
    • getAwtCode

      public int getAwtCode()