Interface WritableBooleanValue
-
- All Superinterfaces:
ReadableBooleanValue
,ReadableSimpleValue<Boolean>
,ReadableTypedValue<Boolean>
,ReadableValue<Boolean>
,Supplier<Boolean>
,WritableSimpleValue<Boolean>
,WritableValue<Boolean>
- All Known Subinterfaces:
WritableBooleanProperty
- All Known Implementing Classes:
BooleanProperty
public interface WritableBooleanValue extends WritableSimpleValue<Boolean>, ReadableBooleanValue
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Boolean
parse(String value)
default void
setValue(boolean value)
-
Methods inherited from interface io.github.mmm.value.observable.booleans.ReadableBooleanValue
getSafe, getValue, getValueClass
-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableSimpleValue
getAsString
-
Methods inherited from interface io.github.mmm.value.ReadableValue
get
-
Methods inherited from interface io.github.mmm.value.observable.object.WritableSimpleValue
setAsString
-
Methods inherited from interface io.github.mmm.value.WritableValue
set
-
-
-
-
Method Detail
-
setValue
default void setValue(boolean value)
- Parameters:
value
- the value to set.- See Also:
ReadableValue.get()
,#set(Boolean)
-
-