Boxes the specified byte value. @param __v The value to box. @return The boxed value. @since 2018/11/14
(byte __v)
| 270 | * @since 2018/11/14 |
| 271 | */ |
| 272 | public static Byte valueOf(byte __v) |
| 273 | { |
| 274 | return new Byte(__v); |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * Parses the string to the given byte value. |