- java.lang.Object
-
- javafx.beans.binding.MapExpression<K,V>
-
- javafx.beans.property.ReadOnlyMapProperty<K,V>
-
- Type Parameters:
K- the type of the key elements of the mapV- the type of the value elements of the map
- All Implemented Interfaces:
Map<K,V>,Observable,ReadOnlyProperty<ObservableMap<K,V>>,ObservableMapValue<K,V>,ObservableObjectValue<ObservableMap<K,V>>,ObservableValue<ObservableMap<K,V>>,ObservableMap<K,V>
- Direct Known Subclasses:
MapProperty,ReadOnlyMapPropertyBase
public abstract class ReadOnlyMapProperty<K,V> extends MapExpression<K,V> implements ReadOnlyProperty<ObservableMap<K,V>>
Superclass for all readonly properties wrapping anObservableMap.- Since:
- JavaFX 2.1
- See Also:
ObservableMap,ObservableMapValue,MapExpression,ReadOnlyProperty
-
-
Property Summary
-
Properties declared in class javafx.beans.binding.MapExpression
empty, size
-
-
Constructor Summary
Constructors Constructor Description ReadOnlyMapProperty()The constructor ofReadOnlyMapProperty.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbindContent(ObservableMap<K,V> map)Creates a content binding between theObservableMap, that is wrapped in thisReadOnlyMapProperty, and anotherObservableMap.voidbindContentBidirectional(ObservableMap<K,V> map)Creates a bidirectional content binding of theObservableMap, that is wrapped in thisReadOnlyMapProperty, and anotherObservableMap.inthashCode()Returns a hash code for thisReadOnlyMapPropertyobject.StringtoString()Returns a string representation of 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 interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Methods declared in class javafx.beans.binding.MapExpression
asString, emptyProperty, getSize, isEqualTo, isNotEqualTo, isNotNull, isNull, mapExpression, sizeProperty, valueAt, valueAt
-
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods declared in interface javafx.beans.Observable
addListener, removeListener
-
Methods declared in interface javafx.collections.ObservableMap
addListener, removeListener
-
Methods declared in interface javafx.beans.value.ObservableObjectValue
get
-
Methods declared in interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
Methods declared in interface javafx.beans.property.ReadOnlyProperty
getBean, getName
-
-
-
-
Method Detail
-
bindContentBidirectional
public void bindContentBidirectional(ObservableMap<K,V> map)
Creates a bidirectional content binding of theObservableMap, that is wrapped in thisReadOnlyMapProperty, and anotherObservableMap.A bidirectional content binding ensures that the content of two
ObservableMapsis the same. If the content of one of the maps changes, the other one will be updated automatically.- Parameters:
map- theObservableMapthis property should be bound to- Throws:
NullPointerException- ifmapisnullIllegalArgumentException- ifmapis the same map that thisReadOnlyMapPropertypoints to
-
unbindContentBidirectional
public void unbindContentBidirectional(Object object)
Deletes a bidirectional content binding between theObservableMap, that is wrapped in thisReadOnlyMapProperty, and anotherObject.- Parameters:
object- theObjectto which the bidirectional binding should be removed- Throws:
NullPointerException- ifobjectisnullIllegalArgumentException- ifobjectis the same map that thisReadOnlyMapPropertypoints to
-
bindContent
public void bindContent(ObservableMap<K,V> map)
Creates a content binding between theObservableMap, that is wrapped in thisReadOnlyMapProperty, and anotherObservableMap.A content binding ensures that the content of the wrapped
ObservableMapsis the same as that of the other map. If the content of the other map changes, the wrapped map will be updated automatically. Once the wrapped list is bound to another map, you must not change it directly.- Parameters:
map- theObservableMapthis property should be bound to- Throws:
NullPointerException- ifmapisnullIllegalArgumentException- ifmapis the same map that thisReadOnlyMapPropertypoints to
-
unbindContent
public void unbindContent(Object object)
Deletes a content binding between theObservableMap, that is wrapped in thisReadOnlyMapProperty, and anotherObject.- Parameters:
object- theObjectto which the binding should be removed- Throws:
NullPointerException- ifobjectisnullIllegalArgumentException- ifobjectis the same map that thisReadOnlyMapPropertypoints to
-
hashCode
public int hashCode()
Returns a hash code for thisReadOnlyMapPropertyobject.- Specified by:
hashCodein interfaceMap<K,V>- Overrides:
hashCodein classObject- Returns:
- a hash code for this
ReadOnlyMapPropertyobject. - See Also:
Object.equals(java.lang.Object),System.identityHashCode(java.lang.Object)
-
-