-
- Type Parameters:
V
- type of thevalue
.
- All Superinterfaces:
ReadableValue<V>
,Supplier<V>
public interface WritableValue<V> extends ReadableValue<V>
AWritableValue
wraps avalue
that can beread
andset
. In general this interface should not be implemented directly but one of its sub-interfaces.- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
set(V value)
-
Methods inherited from interface io.github.mmm.value.ReadableValue
get, getSafe
-
-