Constructs a new Integer with the specified primitive integer value. @param value the primitive integer value to store in the new instance.
(int value)
| 81 | * the primitive integer value to store in the new instance. |
| 82 | */ |
| 83 | public Integer(int value) { |
| 84 | this.value = value; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Constructs a new {@code Integer} from the specified string. |