Interface WritableSimpleValue<V>
-
- Type Parameters:
V
- type of thevalue
.
- All Superinterfaces:
ReadableSimpleValue<V>
,ReadableTypedValue<V>
,ReadableValue<V>
,Supplier<V>
,WritableValue<V>
- All Known Subinterfaces:
WritableBigDecimalProperty
,WritableBigDecimalValue
,WritableBigIntegerProperty
,WritableBigIntegerValue
,WritableBooleanProperty
,WritableBooleanValue
,WritableByteProperty
,WritableByteValue
,WritableDoubleProperty
,WritableDoubleValue
,WritableFloatProperty
,WritableFloatValue
,WritableInstantProperty
,WritableInstantValue
,WritableIntegerProperty
,WritableIntegerValue
,WritableLocalDateProperty
,WritableLocalDateTimeProperty
,WritableLocalDateTimeValue
,WritableLocalDateValue
,WritableLocalTimeProperty
,WritableLocalTimeValue
,WritableLongProperty
,WritableLongValue
,WritableNumberProperty<N>
,WritableNumberValue<N>
,WritableOffsetDateTimeProperty
,WritableOffsetDateTimeValue
,WritableOffsetTimeProperty
,WritableOffsetTimeValue
,WritableShortProperty
,WritableShortValue
,WritableSimpleProperty<V>
,WritableStringProperty
,WritableStringValue
,WritableTemporalValue<V>
,WritableZonedDateTimeProperty
,WritableZonedDateTimeValue
- All Known Implementing Classes:
BigDecimalProperty
,BigIntegerProperty
,BooleanProperty
,ByteProperty
,DoubleProperty
,DurationInSecondsProperty
,FloatProperty
,IdProperty
,InstantProperty
,IntegerProperty
,LinkProperty
,LocalDateProperty
,LocalDateTimeProperty
,LocalTimeProperty
,LongProperty
,NumberProperty
,ObjectProperty
,OffsetDateTimeProperty
,OffsetTimeProperty
,RangeProperty
,ShortProperty
,SimpleProperty
,StringListProperty
,StringProperty
,TemporalProperty
,ZonedDateTimeProperty
public interface WritableSimpleValue<V> extends ReadableSimpleValue<V>, WritableValue<V>
WritableValue
for a simple datatype (and not acontainer value
).- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description V
parse(String valueAsString)
default void
setAsString(String value)
-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableSimpleValue
getAsString
-
Methods inherited from interface io.github.mmm.value.ReadableTypedValue
getValueClass
-
Methods inherited from interface io.github.mmm.value.ReadableValue
get, getSafe
-
Methods inherited from interface io.github.mmm.value.WritableValue
set
-
-