Package | cc.cote.feathers.softkeyboard |
Class | public class CharCode |
Inheritance | CharCode ![]() |
CharCode
class is an enumeration class containing constants associated to
common characters or keys. Each constant contains the charCode
value of the
character in question. All ASCII characters are currently included as well as codes for the
special SWITCH_LAYOUT
, DONE
and SPACER
keys.
These constants are particularly useful when building Layout
classes and key
collections or when checking input received in a KeyEvent
object.
See also
Constant | Defined By | ||
---|---|---|---|
AMPERSAND : int = 38 [static] Constant associated with the character code value for the & character. | CharCode | ||
APOSTROPHE : int = 39 [static] Constant associated with the character code value for the ' character. | CharCode | ||
ASTERISK : int = 42 [static] Constant associated with the character code value for the * character. | CharCode | ||
AT_SIGN : int = 64 [static] Constant associated with the character code value for the @ character. | CharCode | ||
BACKSLASH : int = 92 [static] Constant associated with the character code value for the \ character. | CharCode | ||
BACKSPACE : int = 8 [static] Constant associated with the character code value for the BACKSPACE key. | CharCode | ||
BACKTICK : int = 96 [static] Constant associated with the character code value for the ` character. | CharCode | ||
CAPS_LOCK : int = 20 [static] Constant associated with the character code value for the CAPS_LOCK key. | CharCode | ||
CIRCUMFLEX_ACCENT : int = 94 [static] Constant associated with the character code value for the ^ character. | CharCode | ||
COLON : int = 58 [static] Constant associated with the character code value for the : character. | CharCode | ||
COMMA : int = 44 [static] Constant associated with the character code value for the , character. | CharCode | ||
CONTROL : int = 17 [static] Constant associated with the character code value for the CONTROL key. | CharCode | ||
DELETE : int = 127 [static] Constant associated with the character code value for the DELETE key. | CharCode | ||
DIGIT_0 : int = 48 [static] Constant associated with the character code value for digit 0. | CharCode | ||
DIGIT_1 : int = 49 [static] Constant associated with the character code value for digit 1. | CharCode | ||
DIGIT_2 : int = 50 [static] Constant associated with the character code value for digit 2. | CharCode | ||
DIGIT_3 : int = 51 [static] Constant associated with the character code value for digit 3. | CharCode | ||
DIGIT_4 : int = 52 [static] Constant associated with the character code value for digit 4. | CharCode | ||
DIGIT_5 : int = 53 [static] Constant associated with the character code value for digit 5. | CharCode | ||
DIGIT_6 : int = 54 [static] Constant associated with the character code value for digit 6. | CharCode | ||
DIGIT_7 : int = 55 [static] Constant associated with the character code value for digit 7. | CharCode | ||
DIGIT_8 : int = 56 [static] Constant associated with the character code value for digit 8. | CharCode | ||
DIGIT_9 : int = 57 [static] Constant associated with the character code value for digit 9. | CharCode | ||
DOLLAR : int = 36 [static] Constant associated with the character code value for the $ character. | CharCode | ||
DONE : int = -2 [static] Constant associated with the character code value for the special DONE key. | CharCode | ||
ENTER : int = 13 [static] Constant associated with the character code value for the ENTER/RETURN key. | CharCode | ||
EQUAL : int = 61 [static] Constant associated with the character code value for the = character. | CharCode | ||
ESCAPE : int = 27 [static] Constant associated with the character code value for the ESCAPE key. | CharCode | ||
EXCLAMATION_MARK : int = 33 [static] Constant associated with the character code value for the ! character. | CharCode | ||
GREATER_THAN : int = 62 [static] Constant associated with the character code value for the > character. | CharCode | ||
HASH : int = 35 [static] Constant associated with the character code value for the # character. | CharCode | ||
HYPHEN : int = 45 [static] Constant associated with the character code value for the - character. | CharCode | ||
LEFT_BRACE : int = 123 [static] Constant associated with the character code value for the { character. | CharCode | ||
LEFT_BRACKET : int = 91 [static] Constant associated with the character code value for the [ character. | CharCode | ||
LEFT_PARENTHESIS : int = 40 [static] Constant associated with the character code value for the ( character. | CharCode | ||
LESS_THAN : int = 60 [static] Constant associated with the character code value for the < character. | CharCode | ||
LOWERCASE_A : int = 97 [static] Constant associated with the character code value for the lowercase A character. | CharCode | ||
LOWERCASE_B : int = 98 [static] Constant associated with the character code value for the lowercase B character. | CharCode | ||
LOWERCASE_C : int = 99 [static] Constant associated with the character code value for the lowercase C character. | CharCode | ||
LOWERCASE_D : int = 100 [static] Constant associated with the character code value for the lowercase D character. | CharCode | ||
LOWERCASE_E : int = 101 [static] Constant associated with the character code value for the lowercase E character. | CharCode | ||
LOWERCASE_F : int = 102 [static] Constant associated with the character code value for the lowercase F character. | CharCode | ||
LOWERCASE_G : int = 103 [static] Constant associated with the character code value for the lowercase G character. | CharCode | ||
LOWERCASE_H : int = 104 [static] Constant associated with the character code value for the lowercase H character. | CharCode | ||
LOWERCASE_I : int = 105 [static] Constant associated with the character code value for the lowercase I character. | CharCode | ||
LOWERCASE_J : int = 106 [static] Constant associated with the character code value for the lowercase J character. | CharCode | ||
LOWERCASE_K : int = 107 [static] Constant associated with the character code value for the lowercase K character. | CharCode | ||
LOWERCASE_L : int = 108 [static] Constant associated with the character code value for the lowercase L character. | CharCode | ||
LOWERCASE_M : int = 109 [static] Constant associated with the character code value for the lowercase M character. | CharCode | ||
LOWERCASE_N : int = 110 [static] Constant associated with the character code value for the lowercase N character. | CharCode | ||
LOWERCASE_O : int = 111 [static] Constant associated with the character code value for the lowercase O character. | CharCode | ||
LOWERCASE_P : int = 112 [static] Constant associated with the character code value for the lowercase P character. | CharCode | ||
LOWERCASE_Q : int = 113 [static] Constant associated with the character code value for the lowercase Q character. | CharCode | ||
LOWERCASE_R : int = 114 [static] Constant associated with the character code value for the lowercase R character. | CharCode | ||
LOWERCASE_S : int = 115 [static] Constant associated with the character code value for the lowercase S character. | CharCode | ||
LOWERCASE_T : int = 116 [static] Constant associated with the character code value for the lowercase T character. | CharCode | ||
LOWERCASE_U : int = 117 [static] Constant associated with the character code value for the lowercase U character. | CharCode | ||
LOWERCASE_V : int = 118 [static] Constant associated with the character code value for the lowercase V character. | CharCode | ||
LOWERCASE_W : int = 119 [static] Constant associated with the character code value for the lowercase W character. | CharCode | ||
LOWERCASE_X : int = 120 [static] Constant associated with the character code value for the lowercase X character. | CharCode | ||
LOWERCASE_Y : int = 121 [static] Constant associated with the character code value for the lowercase Y character. | CharCode | ||
LOWERCASE_Z : int = 122 [static] Constant associated with the character code value for the lowercase Zcharacter. | CharCode | ||
MINUS : int = 45 [static] Constant associated with the character code value for the - character. | CharCode | ||
NUM_LOCK : int = 144 [static] Constant associated with the character code value for the DELETE key. | CharCode | ||
PAUSE_BREAK : int = 19 [static] Constant associated with the character code value for the PAUSE_BREAK key. | CharCode | ||
PERCENT : int = 37 [static] Constant associated with the character code value for the % character. | CharCode | ||
PERIOD : int = 46 [static] Constant associated with the character code value for the . character. | CharCode | ||
PIPE : int = 124 [static] Constant associated with the character code value for the | character. | CharCode | ||
PLUS : int = 43 [static] Constant associated with the character code value for the + character. | CharCode | ||
QUESTION_MARK : int = 63 [static] Constant associated with the character code value for the ? character. | CharCode | ||
QUOTE : int = 34 [static] Constant associated with the character code value for the " character. | CharCode | ||
RETURN : int = 13 [static] Constant associated with the character code value for the ENTER/RETURN key. | CharCode | ||
RIGHT_BRACE : int = 125 [static] Constant associated with the character code value for the } character. | CharCode | ||
RIGHT_BRACKET : int = 93 [static] Constant associated with the character code value for the ] character. | CharCode | ||
RIGHT_PARENTHESIS : int = 41 [static] Constant associated with the character code value for the ) character. | CharCode | ||
SCROLL_LOCK : int = 145 [static] Constant associated with the character code value for the DELETE key. | CharCode | ||
SEMICOLON : int = 59 [static] Constant associated with the character code value for the ; character. | CharCode | ||
SHIFT : int = 16 [static] Constant associated with the character code value for the SHIFT key. | CharCode | ||
SLASH : int = 47 [static] Constant associated with the character code value for the / character. | CharCode | ||
SPACE : int = 32 [static] Constant associated with the character code value for the SPACE character. | CharCode | ||
SPACER : int = -3 [static] Constant associated with the character code value for the special SPACER key. | CharCode | ||
SWITCH_LAYOUT : int = -1 [static] Constant associated with the character code value for the special SWITCH_LAYOUT key. | CharCode | ||
TAB : int = 9 [static] Constant associated with the character code value for the TAB key. | CharCode | ||
TILDE : int = 126 [static] Constant associated with the character code value for the ~ character. | CharCode | ||
UNDERSCORE : int = 95 [static] Constant associated with the character code value for the _ character. | CharCode | ||
UPPERCASE_A : int = 65 [static] Constant associated with the character code value for the uppercase A character. | CharCode | ||
UPPERCASE_B : int = 66 [static] Constant associated with the character code value for the uppercase B character. | CharCode | ||
UPPERCASE_C : int = 67 [static] Constant associated with the character code value for the uppercase C character. | CharCode | ||
UPPERCASE_D : int = 68 [static] Constant associated with the character code value for the uppercase D character. | CharCode | ||
UPPERCASE_E : int = 69 [static] Constant associated with the character code value for the uppercase E character. | CharCode | ||
UPPERCASE_F : int = 70 [static] Constant associated with the character code value for the uppercase F character. | CharCode | ||
UPPERCASE_G : int = 71 [static] Constant associated with the character code value for the uppercase G character. | CharCode | ||
UPPERCASE_H : int = 72 [static] Constant associated with the character code value for the uppercase H character. | CharCode | ||
UPPERCASE_I : int = 73 [static] Constant associated with the character code value for the uppercase I character. | CharCode | ||
UPPERCASE_J : int = 74 [static] Constant associated with the character code value for the uppercase J character. | CharCode | ||
UPPERCASE_K : int = 75 [static] Constant associated with the character code value for the uppercase K character. | CharCode | ||
UPPERCASE_L : int = 76 [static] Constant associated with the character code value for the uppercase L character. | CharCode | ||
UPPERCASE_M : int = 77 [static] Constant associated with the character code value for the uppercase M character. | CharCode | ||
UPPERCASE_N : int = 78 [static] Constant associated with the character code value for the uppercase N character. | CharCode | ||
UPPERCASE_O : int = 79 [static] Constant associated with the character code value for the uppercase O character. | CharCode | ||
UPPERCASE_P : int = 80 [static] Constant associated with the character code value for the uppercase P character. | CharCode | ||
UPPERCASE_Q : int = 81 [static] Constant associated with the character code value for the uppercase Q character. | CharCode | ||
UPPERCASE_R : int = 82 [static] Constant associated with the character code value for the uppercase R character. | CharCode | ||
UPPERCASE_S : int = 83 [static] Constant associated with the character code value for the uppercase S character. | CharCode | ||
UPPERCASE_T : int = 84 [static] Constant associated with the character code value for the uppercase T character. | CharCode | ||
UPPERCASE_U : int = 85 [static] Constant associated with the character code value for the uppercase U character. | CharCode | ||
UPPERCASE_V : int = 86 [static] Constant associated with the character code value for the uppercase V character. | CharCode | ||
UPPERCASE_W : int = 87 [static] Constant associated with the character code value for the uppercase W character. | CharCode | ||
UPPERCASE_X : int = 88 [static] Constant associated with the character code value for the uppercase X character. | CharCode | ||
UPPERCASE_Y : int = 89 [static] Constant associated with the character code value for the uppercase Y character. | CharCode | ||
UPPERCASE_Z : int = 90 [static] Constant associated with the character code value for the uppercase Z character. | CharCode |
AMPERSAND | Constant |
public static const AMPERSAND:int = 38
Constant associated with the character code value for the &
character.
APOSTROPHE | Constant |
public static const APOSTROPHE:int = 39
Constant associated with the character code value for the '
character.
ASTERISK | Constant |
public static const ASTERISK:int = 42
Constant associated with the character code value for the *
character.
AT_SIGN | Constant |
public static const AT_SIGN:int = 64
Constant associated with the character code value for the @
character.
BACKSLASH | Constant |
public static const BACKSLASH:int = 92
Constant associated with the character code value for the \
character.
BACKSPACE | Constant |
public static const BACKSPACE:int = 8
Constant associated with the character code value for the BACKSPACE
key.
BACKTICK | Constant |
public static const BACKTICK:int = 96
Constant associated with the character code value for the `
character.
CAPS_LOCK | Constant |
public static const CAPS_LOCK:int = 20
Constant associated with the character code value for the CAPS_LOCK
key.
CIRCUMFLEX_ACCENT | Constant |
public static const CIRCUMFLEX_ACCENT:int = 94
Constant associated with the character code value for the ^
character.
COLON | Constant |
public static const COLON:int = 58
Constant associated with the character code value for the :
character.
COMMA | Constant |
public static const COMMA:int = 44
Constant associated with the character code value for the ,
character.
CONTROL | Constant |
public static const CONTROL:int = 17
Constant associated with the character code value for the CONTROL
key.
DELETE | Constant |
public static const DELETE:int = 127
Constant associated with the character code value for the DELETE
key.
DIGIT_0 | Constant |
public static const DIGIT_0:int = 48
Constant associated with the character code value for digit 0.
DIGIT_1 | Constant |
public static const DIGIT_1:int = 49
Constant associated with the character code value for digit 1.
DIGIT_2 | Constant |
public static const DIGIT_2:int = 50
Constant associated with the character code value for digit 2.
DIGIT_3 | Constant |
public static const DIGIT_3:int = 51
Constant associated with the character code value for digit 3.
DIGIT_4 | Constant |
public static const DIGIT_4:int = 52
Constant associated with the character code value for digit 4.
DIGIT_5 | Constant |
public static const DIGIT_5:int = 53
Constant associated with the character code value for digit 5.
DIGIT_6 | Constant |
public static const DIGIT_6:int = 54
Constant associated with the character code value for digit 6.
DIGIT_7 | Constant |
public static const DIGIT_7:int = 55
Constant associated with the character code value for digit 7.
DIGIT_8 | Constant |
public static const DIGIT_8:int = 56
Constant associated with the character code value for digit 8.
DIGIT_9 | Constant |
public static const DIGIT_9:int = 57
Constant associated with the character code value for digit 9.
DOLLAR | Constant |
public static const DOLLAR:int = 36
Constant associated with the character code value for the $
character.
DONE | Constant |
public static const DONE:int = -2
Constant associated with the character code value for the special DONE
key.
ENTER | Constant |
public static const ENTER:int = 13
Constant associated with the character code value for the ENTER/RETURN
key.
EQUAL | Constant |
public static const EQUAL:int = 61
Constant associated with the character code value for the =
character.
ESCAPE | Constant |
public static const ESCAPE:int = 27
Constant associated with the character code value for the ESCAPE
key.
EXCLAMATION_MARK | Constant |
public static const EXCLAMATION_MARK:int = 33
Constant associated with the character code value for the !
character.
GREATER_THAN | Constant |
public static const GREATER_THAN:int = 62
Constant associated with the character code value for the >
character.
HASH | Constant |
public static const HASH:int = 35
Constant associated with the character code value for the #
character.
HYPHEN | Constant |
public static const HYPHEN:int = 45
Constant associated with the character code value for the -
character.
LEFT_BRACE | Constant |
public static const LEFT_BRACE:int = 123
Constant associated with the character code value for the {
character.
LEFT_BRACKET | Constant |
public static const LEFT_BRACKET:int = 91
Constant associated with the character code value for the [
character.
LEFT_PARENTHESIS | Constant |
public static const LEFT_PARENTHESIS:int = 40
Constant associated with the character code value for the (
character.
LESS_THAN | Constant |
public static const LESS_THAN:int = 60
Constant associated with the character code value for the <
character.
LOWERCASE_A | Constant |
public static const LOWERCASE_A:int = 97
Constant associated with the character code value for the lowercase A
character.
LOWERCASE_B | Constant |
public static const LOWERCASE_B:int = 98
Constant associated with the character code value for the lowercase B
character.
LOWERCASE_C | Constant |
public static const LOWERCASE_C:int = 99
Constant associated with the character code value for the lowercase C
character.
LOWERCASE_D | Constant |
public static const LOWERCASE_D:int = 100
Constant associated with the character code value for the lowercase D
character.
LOWERCASE_E | Constant |
public static const LOWERCASE_E:int = 101
Constant associated with the character code value for the lowercase E
character.
LOWERCASE_F | Constant |
public static const LOWERCASE_F:int = 102
Constant associated with the character code value for the lowercase F
character.
LOWERCASE_G | Constant |
public static const LOWERCASE_G:int = 103
Constant associated with the character code value for the lowercase G
character.
LOWERCASE_H | Constant |
public static const LOWERCASE_H:int = 104
Constant associated with the character code value for the lowercase H
character.
LOWERCASE_I | Constant |
public static const LOWERCASE_I:int = 105
Constant associated with the character code value for the lowercase I
character.
LOWERCASE_J | Constant |
public static const LOWERCASE_J:int = 106
Constant associated with the character code value for the lowercase J
character.
LOWERCASE_K | Constant |
public static const LOWERCASE_K:int = 107
Constant associated with the character code value for the lowercase K
character.
LOWERCASE_L | Constant |
public static const LOWERCASE_L:int = 108
Constant associated with the character code value for the lowercase L
character.
LOWERCASE_M | Constant |
public static const LOWERCASE_M:int = 109
Constant associated with the character code value for the lowercase M
character.
LOWERCASE_N | Constant |
public static const LOWERCASE_N:int = 110
Constant associated with the character code value for the lowercase N
character.
LOWERCASE_O | Constant |
public static const LOWERCASE_O:int = 111
Constant associated with the character code value for the lowercase O
character.
LOWERCASE_P | Constant |
public static const LOWERCASE_P:int = 112
Constant associated with the character code value for the lowercase P
character.
LOWERCASE_Q | Constant |
public static const LOWERCASE_Q:int = 113
Constant associated with the character code value for the lowercase Q
character.
LOWERCASE_R | Constant |
public static const LOWERCASE_R:int = 114
Constant associated with the character code value for the lowercase R
character.
LOWERCASE_S | Constant |
public static const LOWERCASE_S:int = 115
Constant associated with the character code value for the lowercase S
character.
LOWERCASE_T | Constant |
public static const LOWERCASE_T:int = 116
Constant associated with the character code value for the lowercase T
character.
LOWERCASE_U | Constant |
public static const LOWERCASE_U:int = 117
Constant associated with the character code value for the lowercase U
character.
LOWERCASE_V | Constant |
public static const LOWERCASE_V:int = 118
Constant associated with the character code value for the lowercase V
character.
LOWERCASE_W | Constant |
public static const LOWERCASE_W:int = 119
Constant associated with the character code value for the lowercase W
character.
LOWERCASE_X | Constant |
public static const LOWERCASE_X:int = 120
Constant associated with the character code value for the lowercase X
character.
LOWERCASE_Y | Constant |
public static const LOWERCASE_Y:int = 121
Constant associated with the character code value for the lowercase Y
character.
LOWERCASE_Z | Constant |
public static const LOWERCASE_Z:int = 122
Constant associated with the character code value for the lowercase Z
character.
MINUS | Constant |
public static const MINUS:int = 45
Constant associated with the character code value for the -
character.
NUM_LOCK | Constant |
public static const NUM_LOCK:int = 144
Constant associated with the character code value for the DELETE
key.
PAUSE_BREAK | Constant |
public static const PAUSE_BREAK:int = 19
Constant associated with the character code value for the PAUSE_BREAK
key.
PERCENT | Constant |
public static const PERCENT:int = 37
Constant associated with the character code value for the %
character.
PERIOD | Constant |
public static const PERIOD:int = 46
Constant associated with the character code value for the .
character.
PIPE | Constant |
public static const PIPE:int = 124
Constant associated with the character code value for the |
character.
PLUS | Constant |
public static const PLUS:int = 43
Constant associated with the character code value for the +
character.
QUESTION_MARK | Constant |
public static const QUESTION_MARK:int = 63
Constant associated with the character code value for the ?
character.
QUOTE | Constant |
public static const QUOTE:int = 34
Constant associated with the character code value for the "
character.
RETURN | Constant |
public static const RETURN:int = 13
Constant associated with the character code value for the ENTER/RETURN
key.
RIGHT_BRACE | Constant |
public static const RIGHT_BRACE:int = 125
Constant associated with the character code value for the }
character.
RIGHT_BRACKET | Constant |
public static const RIGHT_BRACKET:int = 93
Constant associated with the character code value for the ]
character.
RIGHT_PARENTHESIS | Constant |
public static const RIGHT_PARENTHESIS:int = 41
Constant associated with the character code value for the )
character.
SCROLL_LOCK | Constant |
public static const SCROLL_LOCK:int = 145
Constant associated with the character code value for the DELETE
key.
SEMICOLON | Constant |
public static const SEMICOLON:int = 59
Constant associated with the character code value for the ;
character.
SHIFT | Constant |
public static const SHIFT:int = 16
Constant associated with the character code value for the SHIFT
key.
SLASH | Constant |
public static const SLASH:int = 47
Constant associated with the character code value for the /
character.
SPACE | Constant |
public static const SPACE:int = 32
Constant associated with the character code value for the SPACE
character.
SPACER | Constant |
public static const SPACER:int = -3
Constant associated with the character code value for the special SPACER
key.
SWITCH_LAYOUT | Constant |
public static const SWITCH_LAYOUT:int = -1
Constant associated with the character code value for the special SWITCH_LAYOUT
key.
TAB | Constant |
public static const TAB:int = 9
Constant associated with the character code value for the TAB
key.
TILDE | Constant |
public static const TILDE:int = 126
Constant associated with the character code value for the ~
character.
UNDERSCORE | Constant |
public static const UNDERSCORE:int = 95
Constant associated with the character code value for the _
character.
UPPERCASE_A | Constant |
public static const UPPERCASE_A:int = 65
Constant associated with the character code value for the uppercase A
character.
UPPERCASE_B | Constant |
public static const UPPERCASE_B:int = 66
Constant associated with the character code value for the uppercase B
character.
UPPERCASE_C | Constant |
public static const UPPERCASE_C:int = 67
Constant associated with the character code value for the uppercase C
character.
UPPERCASE_D | Constant |
public static const UPPERCASE_D:int = 68
Constant associated with the character code value for the uppercase D
character.
UPPERCASE_E | Constant |
public static const UPPERCASE_E:int = 69
Constant associated with the character code value for the uppercase E
character.
UPPERCASE_F | Constant |
public static const UPPERCASE_F:int = 70
Constant associated with the character code value for the uppercase F
character.
UPPERCASE_G | Constant |
public static const UPPERCASE_G:int = 71
Constant associated with the character code value for the uppercase G
character.
UPPERCASE_H | Constant |
public static const UPPERCASE_H:int = 72
Constant associated with the character code value for the uppercase H
character.
UPPERCASE_I | Constant |
public static const UPPERCASE_I:int = 73
Constant associated with the character code value for the uppercase I
character.
UPPERCASE_J | Constant |
public static const UPPERCASE_J:int = 74
Constant associated with the character code value for the uppercase J
character.
UPPERCASE_K | Constant |
public static const UPPERCASE_K:int = 75
Constant associated with the character code value for the uppercase K
character.
UPPERCASE_L | Constant |
public static const UPPERCASE_L:int = 76
Constant associated with the character code value for the uppercase L
character.
UPPERCASE_M | Constant |
public static const UPPERCASE_M:int = 77
Constant associated with the character code value for the uppercase M
character.
UPPERCASE_N | Constant |
public static const UPPERCASE_N:int = 78
Constant associated with the character code value for the uppercase N
character.
UPPERCASE_O | Constant |
public static const UPPERCASE_O:int = 79
Constant associated with the character code value for the uppercase O
character.
UPPERCASE_P | Constant |
public static const UPPERCASE_P:int = 80
Constant associated with the character code value for the uppercase P
character.
UPPERCASE_Q | Constant |
public static const UPPERCASE_Q:int = 81
Constant associated with the character code value for the uppercase Q
character.
UPPERCASE_R | Constant |
public static const UPPERCASE_R:int = 82
Constant associated with the character code value for the uppercase R
character.
UPPERCASE_S | Constant |
public static const UPPERCASE_S:int = 83
Constant associated with the character code value for the uppercase S
character.
UPPERCASE_T | Constant |
public static const UPPERCASE_T:int = 84
Constant associated with the character code value for the uppercase T
character.
UPPERCASE_U | Constant |
public static const UPPERCASE_U:int = 85
Constant associated with the character code value for the uppercase U
character.
UPPERCASE_V | Constant |
public static const UPPERCASE_V:int = 86
Constant associated with the character code value for the uppercase V
character.
UPPERCASE_W | Constant |
public static const UPPERCASE_W:int = 87
Constant associated with the character code value for the uppercase W
character.
UPPERCASE_X | Constant |
public static const UPPERCASE_X:int = 88
Constant associated with the character code value for the uppercase X
character.
UPPERCASE_Y | Constant |
public static const UPPERCASE_Y:int = 89
Constant associated with the character code value for the uppercase Y
character.
UPPERCASE_Z | Constant |
public static const UPPERCASE_Z:int = 90
Constant associated with the character code value for the uppercase Z
character.