Interface ReadableMapValue<K,V>
-
- All Superinterfaces:
ReadableContainerValue<Map<K,V>,V>
,ReadableObjectValue<Map<K,V>>
,ReadableTypedObjectValue<Map<K,V>>
,ReadableTypedValue<Map<K,V>>
,ReadableValue<Map<K,V>>
,Supplier<Map<K,V>>
- All Known Subinterfaces:
ObservableMapValue<K,V>
,ReadableMapProperty<K,V>
,WritableMapProperty<K,V>
,WritableMapValue<K,V>
- All Known Implementing Classes:
MapProperty
public interface ReadableMapValue<K,V> extends ReadableContainerValue<Map<K,V>,V>
- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Class<Map<K,V>>
getValueClass()
default int
size()
-
Methods inherited from interface io.github.mmm.value.observable.container.ReadableContainerValue
isEmpty
-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableObjectValue
getSafe, getValue
-
Methods inherited from interface io.github.mmm.value.ReadableValue
get
-
-
-
-
Method Detail
-
getValueClass
default Class<Map<K,V>> getValueClass()
- Specified by:
getValueClass
in interfaceReadableTypedValue<K>
- 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.
-
-