getAlphanumericCode static method

int getAlphanumericCode(
  1. int code
)

@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;
}