Initializes the code. @param __full The full code. @throws IllegalArgumentException If the prefix or number are not valid. @throws NullPointerException On null arguments. @since 2017/10/27
(String __full)
| 282 | * @since 2017/10/27 |
| 283 | */ |
| 284 | public Code(String __full) |
| 285 | throws IllegalArgumentException, NullPointerException |
| 286 | { |
| 287 | this(__full.substring(0, 2), __full.substring(2, 4)); |
| 288 | } |
| 289 | |
| 290 | /** |
| 291 | * Initializes the code. |
nothing calls this directly
no test coverage detected