Returns the option with the specified name. @param name name of the option @return value (can be null)
(final String name)
| 168 | * @return value (can be {@code null}) |
| 169 | */ |
| 170 | public final synchronized Option<?> option(final String name) { |
| 171 | return definitions.get(name); |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Returns the value of the specified option. |