Inverts the boolean value of an option. @param option option @return new value
(final BooleanOption option)
| 499 | * @return new value |
| 500 | */ |
| 501 | public final synchronized boolean invert(final BooleanOption option) { |
| 502 | final boolean val = !get(option); |
| 503 | set(option, val); |
| 504 | return val; |
| 505 | } |
| 506 | |
| 507 | /** |
| 508 | * Overwrites the options with global options and system properties. |