Class ReadOnlyMapWrapper<K,V>
java.lang.Object
javafx.beans.binding.MapExpression<K,V>
javafx.beans.property.ReadOnlyMapProperty<K,V>
javafx.beans.property.MapProperty<K,V>
javafx.beans.property.MapPropertyBase<K,V>
javafx.beans.property.SimpleMapProperty<K,V>
javafx.beans.property.ReadOnlyMapWrapper<K,V>
- Type Parameters:
K- the map key typeV- the map value type
- All Implemented Interfaces:
Map<K,V>, Observable, Property<ObservableMap<K, V>>, ReadOnlyProperty<ObservableMap<K, V>>, ObservableMapValue<K, V>, ObservableObjectValue<ObservableMap<K, V>>, ObservableValue<ObservableMap<K, V>>, WritableMapValue<K, V>, WritableObjectValue<ObservableMap<K, V>>, WritableValue<ObservableMap<K, V>>, ObservableMap<K, V>
This class provides a convenient class to define read-only properties. It
creates two properties that are synchronized. One property is read-only
and can be passed to external users. The other property is read- and
writable and should be used internally only.
- Since:
- JavaFX 2.1
-
Nested Class Summary
-
Property Summary
Properties declared in class MapPropertyBase
empty, sizeTypePropertyDescriptionA boolean property that istrue, if the map is empty.An integer property that represents the size of the map. -
Constructor Summary
ConstructorsConstructorDescriptionThe constructor ofReadOnlyMapWrapperReadOnlyMapWrapper(Object bean, String name) The constructor ofReadOnlyMapWrapperReadOnlyMapWrapper(Object bean, String name, ObservableMap<K, V> initialValue) The constructor ofReadOnlyMapWrapperReadOnlyMapWrapper(ObservableMap<K, V> initialValue) The constructor ofReadOnlyMapWrapper -
Method Summary
Modifier and TypeMethodDescriptionReturns the readonly property, that is synchronized with thisReadOnlyMapWrapper.Methods declared in class SimpleMapProperty
getBean, getNameMethods declared in class MapPropertyBase
addListener, addListener, addListener, bind, emptyProperty, fireValueChangedEvent, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, removeListener, set, sizeProperty, toString, unbindModifier and TypeMethodDescriptionvoidaddListener(InvalidationListener listener) Adds anInvalidationListenerwhich will be notified whenever theObservablebecomes invalid.voidaddListener(ChangeListener<? super ObservableMap<K, V>> listener) Adds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges.voidaddListener(MapChangeListener<? super K, ? super V> listener) Add a listener to this observable map.voidbind(ObservableValue<? extends ObservableMap<K, V>> newObservable) Create a unidirection binding for thisProperty.A boolean property that istrue, if the map is empty.protected voidprotected voidfireValueChangedEvent(MapChangeListener.Change<? extends K, ? extends V> change) get()Returns the current value of thisObservableObjectValue<T>.protected voidThe methodinvalidated()can be overridden to receive invalidation notifications.booleanisBound()Can be used to check, if aPropertyis bound.voidremoveListener(InvalidationListener listener) Removes the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes invalid.voidremoveListener(ChangeListener<? super ObservableMap<K, V>> listener) Removes the given listener from the list of listeners that are notified whenever the value of theObservableValuechanges.voidremoveListener(MapChangeListener<? super K, ? super V> listener) Tries to removed a listener from this observable map.voidset(ObservableMap<K, V> newValue) Set the wrapped value.An integer property that represents the size of the map.toString()Returns a string representation of thisMapPropertyBaseobject.voidunbind()Remove the unidirectional binding for thisProperty.Methods declared in class MapProperty
bindBidirectional, setValue, unbindBidirectionalModifier and TypeMethodDescriptionvoidbindBidirectional(Property<ObservableMap<K, V>> other) Create a bidirectional binding between thisPropertyand another one.voidsetValue(ObservableMap<K, V> v) Set the wrapped value.voidunbindBidirectional(Property<ObservableMap<K, V>> other) Removes a bidirectional binding between thisPropertyand another one.Methods declared in class ReadOnlyMapProperty
bindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectionalModifier and TypeMethodDescriptionvoidbindContent(ObservableMap<K, V> map) Creates a content binding between theObservableMap, that is wrapped in thisReadOnlyMapProperty, and anotherObservableMap.voidCreates a bidirectional content binding of theObservableMap, that is wrapped in thisReadOnlyMapProperty, and anotherObservableMap.booleaninthashCode()Returns a hash code for thisReadOnlyMapPropertyobject.voidunbindContent(Object object) Deletes a content binding between theObservableMap, that is wrapped in thisReadOnlyMapProperty, and anotherObject.voidunbindContentBidirectional(Object object) Deletes a bidirectional content binding between theObservableMap, that is wrapped in thisReadOnlyMapProperty, and anotherObject.Methods declared in class MapExpression
asString, clear, containsKey, containsValue, entrySet, get, getSize, getValue, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, keySet, mapExpression, put, putAll, remove, size, valueAt, valueAt, valuesModifier and TypeMethodDescriptionasString()voidclear()booleancontainsKey(Object obj) booleancontainsValue(Object obj) entrySet()intgetSize()The size of the mapgetValue()Returns the current value of thisObservableValuebooleanisEmpty()Gets the value of theemptyproperty.isEqualTo(ObservableMap<?, ?> other) isNotEqualTo(ObservableMap<?, ?> other) isNull()keySet()static <K,V> MapExpression <K, V> mapExpression(ObservableMapValue<K, V> value) Returns aMapExpressionthat wraps aObservableMapValue.voidintsize()valueAt(ObservableValue<K> key) Creates a newObjectBindingthat contains the mapping of the specified key.Creates a newObjectBindingthat contains the mapping of the specified key.values()Methods declared in class Object
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, waitMethods declared in interface Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAllMethods declared in interface Observable
subscribeModifier and TypeMethodDescriptiondefault SubscriptionCreates aSubscriptionon thisObservablewhich callsinvalidationSubscriberwhenever it becomes invalid.Methods declared in interface ObservableValue
flatMap, map, orElse, subscribe, subscribe, whenModifier and TypeMethodDescriptiondefault <U> ObservableValue<U> flatMap(Function<? super ObservableMap<K, V>, ? extends ObservableValue<? extends U>> mapper) Returns anObservableValuethat holds the value of anObservableValueproduced by applying the given mapping function on this value.default <U> ObservableValue<U> map(Function<? super ObservableMap<K, V>, ? extends U> mapper) Returns anObservableValuethat holds the result of applying the given mapping function on this value.default ObservableValue<ObservableMap<K, V>> orElse(ObservableMap<K, V> constant) Returns anObservableValuethat holds this value, or the given constant if it isnull.default Subscriptionsubscribe(BiConsumer<? super ObservableMap<K, V>, ? super ObservableMap<K, V>> changeSubscriber) Creates aSubscriptionon thisObservableValuewhich calls the givenchangeSubscriberwith the old and new value whenever its value changes.default Subscriptionsubscribe(Consumer<? super ObservableMap<K, V>> valueSubscriber) Creates aSubscriptionon thisObservableValuewhich immediately provides the current value to the givenvalueSubscriber, followed by any subsequent values whenever its value changes.default ObservableValue<ObservableMap<K, V>> when(ObservableValue<Boolean> condition) Returns anObservableValuethat holds this value and is updated only whenconditionholdstrue.Methods declared in interface WritableValue
getValue
-
Constructor Details
-
ReadOnlyMapWrapper
public ReadOnlyMapWrapper()The constructor ofReadOnlyMapWrapper -
ReadOnlyMapWrapper
The constructor ofReadOnlyMapWrapper- Parameters:
initialValue- the initial value of the wrapped value
-
ReadOnlyMapWrapper
-
ReadOnlyMapWrapper
The constructor ofReadOnlyMapWrapper- Parameters:
bean- the bean of thisReadOnlyMapWrappername- the name of thisReadOnlyMapWrapperinitialValue- the initial value of the wrapped value
-
-
Method Details
-
getReadOnlyProperty
Returns the readonly property, that is synchronized with thisReadOnlyMapWrapper.- Returns:
- the readonly property
-