Interface ReadableStringValue
-
- All Superinterfaces:
ReadableSimpleValue<String>
,ReadableTypedValue<String>
,ReadableValue<String>
,Supplier<String>
- All Known Subinterfaces:
ObservableStringValue
,StringExpression
,WritableStringValue
- All Known Implementing Classes:
StringBinding
public interface ReadableStringValue extends ReadableSimpleValue<String>
- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default String
getAsString()
default String
getSafe()
default String
getValue()
Same asReadableValue.get()
.default Class<String>
getValueClass()
-
Methods inherited from interface io.github.mmm.value.ReadableValue
get
-
-
-
-
Method Detail
-
getAsString
default String getAsString()
- Specified by:
getAsString
in interfaceReadableSimpleValue<String>
- Returns:
- the
value
asString
.
-
getValueClass
default Class<String> getValueClass()
- Specified by:
getValueClass
in interfaceReadableTypedValue<String>
-
getValue
default String getValue()
Same asReadableValue.get()
.- Returns:
- the current
value
.
-
getSafe
default String getSafe()
- Specified by:
getSafe
in interfaceReadableValue<String>
-
-