* Initialize a parameter from the command line or process environment * * * This method looks for the parameter from the command line in the format * --PARAMETER=VALUE, then from the process environment, then from the * default specified as an argument. * * *
(paramName, defaultValue)
| 1016 | * @return {T} The found value, or default value |
| 1017 | */ |
| 1018 | initParam(paramName, defaultValue) { |
| 1019 | return this.env.initParam(paramName, defaultValue); |
| 1020 | } |
| 1021 | |
| 1022 | /** |
| 1023 | * <p>Get Command Line Arguments</p> |