Module io.github.mmm.property
Interface ReadableMapProperty<K,V>
-
- All Superinterfaces:
EventSource<ObservableEvent<Map<K,V>>,ObservableEventListener<? super Map<K,V>>>
,MarshallableObject
,Marshaller<Object>
,ObservableContainerValue<Map<K,V>,V>
,ObservableMapValue<K,V>
,ObservableValue<Map<K,V>>
,PropertyPath<Map<K,V>>
,ReadableContainerProperty<Map<K,V>,V>
,ReadableContainerValue<Map<K,V>,V>
,ReadableMapValue<K,V>
,ReadableObjectValue<Map<K,V>>
,ReadableProperty<Map<K,V>>
,ReadableTypedObjectValue<Map<K,V>>
,ReadableTypedValue<Map<K,V>>
,ReadableValue<Map<K,V>>
,Supplier<Map<K,V>>
,TypedPropertyPath<Map<K,V>>
,Validatable
- All Known Subinterfaces:
WritableMapProperty<K,V>
- All Known Implementing Classes:
MapProperty
public interface ReadableMapProperty<K,V> extends ObservableMapValue<K,V>, ReadableContainerProperty<Map<K,V>,V>
- Since:
- 1.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static String
METADATA_KEY_KEY_PROPERTY
-
Fields inherited from interface io.github.mmm.property.container.ReadableContainerProperty
METADATA_KEY_COMPONENT_PROPERTY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReadableProperty<K>
getKeyProperty()
-
Methods inherited from interface io.github.mmm.event.EventSource
addListener, addListener, addWeakListener, removeListener
-
Methods inherited from interface io.github.mmm.marshall.MarshallableObject
write, writeObject
-
Methods inherited from interface io.github.mmm.value.observable.ObservableValue
toString
-
Methods inherited from interface io.github.mmm.property.container.ReadableContainerProperty
emptyProperty, getValueProperty, sizeProperty
-
Methods inherited from interface io.github.mmm.value.observable.container.ReadableContainerValue
isEmpty
-
Methods inherited from interface io.github.mmm.value.observable.container.map.ReadableMapValue
getValueClass, size
-
Methods inherited from interface io.github.mmm.value.observable.object.ReadableObjectValue
getSafe, getValue
-
Methods inherited from interface io.github.mmm.property.ReadableProperty
getMetadata, getName, isReadOnly, isTransient, isValid
-
Methods inherited from interface io.github.mmm.value.ReadableValue
get
-
Methods inherited from interface io.github.mmm.validation.Validatable
validate
-
-
-
-
Field Detail
-
METADATA_KEY_KEY_PROPERTY
static final String METADATA_KEY_KEY_PROPERTY
- See Also:
- Constant Field Values
-
-
Method Detail
-
getKeyProperty
ReadableProperty<K> getKeyProperty()
- Returns:
- the
ReadableProperty
representing the type of thekeys
of theMap
value
.
-
-