Updates the local with the provided value. @param value value to set
(final T value)
| 129 | * @param value value to set |
| 130 | */ |
| 131 | public final void update(final T value) { |
| 132 | set(Optional.of(value)); |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Sets the value of the local. It's similar to update but receives an |