Interface ReadableLocalDateValue
-
- All Superinterfaces:
ReadableObjectValue<LocalDate>
,ReadableSimpleValue<LocalDate>
,ReadableTemporalValue<LocalDate>
,ReadableTypedObjectValue<LocalDate>
,ReadableTypedValue<LocalDate>
,ReadableValue<LocalDate>
,Supplier<LocalDate>
- All Known Subinterfaces:
LocalDateExpression
,ObservableLocalDateValue
,ReadableLocalDateProperty
,WritableLocalDateProperty
,WritableLocalDateValue
- All Known Implementing Classes:
LocalDateBinding
,LocalDateProperty
public interface ReadableLocalDateValue extends ReadableTemporalValue<LocalDate>
- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Class<LocalDate>
getValueClass()
-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableObjectValue
getSafe, getValue
-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableSimpleValue
getAsString
-
Methods inherited from interface io.github.mmm.value.ReadableValue
get
-
-
-
-
Method Detail
-
getValueClass
default Class<LocalDate> getValueClass()
- Specified by:
getValueClass
in interfaceReadableTypedValue<LocalDate>
- Returns:
- the
Class
reflecting the type ofvalues
that can be stored by this property. Even if thevalue
isnull
the property must support returning the property class.
-
-