Returns the value of the specified option. @param option option @return value (can be null)
(final Option<?> option)
| 177 | * @return value (can be {@code null}) |
| 178 | */ |
| 179 | public final synchronized Object get(final Option<?> option) { |
| 180 | return get(option.name()); |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Returns the value of the specified option. |