getX12Value static method
Implementation
/* private */ static int getX12Value(int c) {
return c == 13
? 0
: c == 42
? 1
: c == 62
? 2
: c == 32
? 3
: c >= 48 && c <= 57
? c - 44
: c >= 65 && c <= 90
? c - 51
: c;
}