Interface WritableObjectValue<V>
-
- Type Parameters:
V
- type of thevalue
.
- All Superinterfaces:
ReadableObjectValue<V>
,ReadableValue<V>
,Supplier<V>
,WritableValue<V>
- All Known Subinterfaces:
WritableBeanProperty<V>
,io.github.mmm.property.container.collection.WritableCollectionProperty<V,E>
,WritableCollectionValue<C,E>
,WritableContainerProperty<V,E>
,WritableContainerValue<C,E>
,WritableInstantProperty
,WritableInstantValue
,WritableListProperty<E>
,WritableListValue<E>
,WritableLocalDateProperty
,WritableLocalDateTimeProperty
,WritableLocalDateTimeValue
,WritableLocalDateValue
,WritableLocalTimeProperty
,WritableLocalTimeValue
,WritableMapProperty<K,V>
,WritableMapValue<K,V>
,WritableObjectProperty<V>
,WritableOffsetDateTimeProperty
,WritableOffsetDateTimeValue
,WritableOffsetTimeProperty
,WritableOffsetTimeValue
,WritableSetProperty<E>
,WritableSetValue<E>
,WritableTemporalValue<V>
,WritableZonedDateTimeProperty
,WritableZonedDateTimeValue
- All Known Implementing Classes:
BeanProperty
,io.github.mmm.property.container.collection.CollectionProperty
,ContainerProperty
,IdProperty
,InstantProperty
,LinkProperty
,ListProperty
,LocalDateProperty
,LocalDateTimeProperty
,LocalTimeProperty
,MapProperty
,ObjectProperty
,OffsetDateTimeProperty
,OffsetTimeProperty
,SetProperty
,ZonedDateTimeProperty
public interface WritableObjectValue<V> extends ReadableObjectValue<V>, WritableValue<V>
- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
setValue(V value)
Same asWritableValue.set(Object)
.-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableObjectValue
getSafe, getValue
-
Methods inherited from interface io.github.mmm.value.ReadableValue
get
-
Methods inherited from interface io.github.mmm.value.WritableValue
set
-
-
-
-
Method Detail
-
setValue
default void setValue(V value)
Same asWritableValue.set(Object)
.- Parameters:
value
- the new value.
-
-