Interface WritableValue<V>

Type Parameters:
V - type of the value.
All Superinterfaces:
ReadableValue<V>, Supplier<V>

public interface WritableValue<V> extends ReadableValue<V>
A WritableValue wraps a value that can be read and set. In general this interface should not be implemented directly but one of its sub-interfaces.
Since:
1.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    set(V value)
     

    Methods inherited from interface io.github.mmm.value.ReadableValue

    get, getSafe
  • Method Details

    • set

      void set(V value)
      Parameters:
      value - the new value.