getAlphanumericCode static method
@return the code point of the table used in alphanumeric mode or -1 if there is no corresponding code in the table.
Implementation
static int getAlphanumericCode(int code) {
if (code < _alphanumericTable.length) {
return _alphanumericTable[code];
}
return -1;
}