Converts the specified token to upper case. @param token token to be converted @return resulting token
(final byte[] token)
| 1276 | * @return resulting token |
| 1277 | */ |
| 1278 | public static byte[] uc(final byte[] token) { |
| 1279 | return uc(token, ascii(token)); |
| 1280 | } |
| 1281 | |
| 1282 | /** |
| 1283 | * Converts the specified token to upper case. |