(int month)
| 121 | * @throws IllegalArgumentException if given argument is out of range |
| 122 | */ |
| 123 | public static Month valueOf(int month) { |
| 124 | |
| 125 | if ((month < 1) || (month > 12)) { |
| 126 | throw new IllegalArgumentException("Out of range: " + month); |
| 127 | } |
| 128 | |
| 129 | return ENUMS[month - 1]; |
| 130 | |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * <p>Gets the corresponding numerical value. </p> |
no outgoing calls