Returns a string representation of x, where x is treated as unsigned. @since 13.0
(byte x)
| 182 | */ |
| 183 | |
| 184 | @Beta |
| 185 | public static String toString(byte x) { |
| 186 | return toString(x, 10); |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * Returns a string representation of {@code x} for the given radix, where {@code x} is treated as |
no test coverage detected