Constructs a new Byte with the specified primitive byte value. @param value the primitive byte value to store in the new instance.
(byte value)
| 71 | * the primitive byte value to store in the new instance. |
| 72 | */ |
| 73 | public Byte(byte value) { |
| 74 | this.value = value; |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Constructs a new {@code Byte} from the specified string. |