- 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<K>
,ObservableValue<K>
,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 inherited from 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 void
bindContent(ObservableMap<K,V> map)
Creates a content binding between theObservableMap
, that is wrapped in thisReadOnlyMapProperty
, and anotherObservableMap
.void
bindContentBidirectional(ObservableMap<K,V> map)
Creates a bidirectional content binding of theObservableMap
, that is wrapped in thisReadOnlyMapProperty
, and anotherObservableMap
.boolean
equals(Object obj)
Indicates whether some other object is "equal to" this one.int
hashCode()
Returns a hash code for thisReadOnlyMapProperty
object.String
toString()
Returns a string representation of thisReadOnlyMapProperty
object.void
unbindContent(Object object)
Deletes a content binding between theObservableMap
, that is wrapped in thisReadOnlyMapProperty
, and anotherObject
.void
unbindContentBidirectional(Object object)
Deletes a bidirectional content binding between theObservableMap
, that is wrapped in thisReadOnlyMapProperty
, and anotherObject
.-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, entry, forEach, getOrDefault, merge, of, of, of, of, of, of, of, of, of, of, of, ofEntries, putIfAbsent, remove, replace, replace, replaceAll
-
Methods inherited from class javafx.beans.binding.MapExpression
asString, clear, containsKey, containsValue, emptyProperty, entrySet, get, getSize, getValue, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, keySet, mapExpression, put, putAll, remove, size, sizeProperty, valueAt, valueAt, values
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javafx.beans.Observable
addListener, removeListener
-
Methods inherited from interface javafx.collections.ObservableMap
addListener, removeListener
-
Methods inherited from interface javafx.beans.value.ObservableObjectValue
get
-
Methods inherited from interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
Methods inherited from 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
ObservableMaps
is the same. If the content of one of the maps changes, the other one will be updated automatically.- Parameters:
map
- theObservableMap
this property should be bound to- Throws:
NullPointerException
- ifmap
isnull
IllegalArgumentException
- ifmap
is the same map that thisReadOnlyMapProperty
points to
-
unbindContentBidirectional
public void unbindContentBidirectional(Object object)
Deletes a bidirectional content binding between theObservableMap
, that is wrapped in thisReadOnlyMapProperty
, and anotherObject
.- Parameters:
object
- theObject
to which the bidirectional binding should be removed- Throws:
NullPointerException
- ifobject
isnull
IllegalArgumentException
- ifobject
is the same map that thisReadOnlyMapProperty
points 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
ObservableMaps
is 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
- theObservableMap
this property should be bound to- Throws:
NullPointerException
- ifmap
isnull
IllegalArgumentException
- ifmap
is the same map that thisReadOnlyMapProperty
points to
-
unbindContent
public void unbindContent(Object object)
Deletes a content binding between theObservableMap
, that is wrapped in thisReadOnlyMapProperty
, and anotherObject
.- Parameters:
object
- theObject
to which the binding should be removed- Throws:
NullPointerException
- ifobject
isnull
IllegalArgumentException
- ifobject
is the same map that thisReadOnlyMapProperty
points to
-
equals
public boolean equals(Object obj)
Description copied from class:Object
Indicates whether some other object is "equal to" this one.The
equals
method implements an equivalence relation on non-null object references:- It is reflexive: for any non-null reference value
x
,x.equals(x)
should returntrue
. - It is symmetric: for any non-null reference values
x
andy
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any non-null reference values
x
,y
, andz
, ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
. - It is consistent: for any non-null reference values
x
andy
, multiple invocations ofx.equals(y)
consistently returntrue
or consistently returnfalse
, provided no information used inequals
comparisons on the objects is modified. - For any non-null reference value
x
,x.equals(null)
should returnfalse
.
The
equals
method for classObject
implements the most discriminating possible equivalence relation on objects; that is, for any non-null reference valuesx
andy
, this method returnstrue
if and only ifx
andy
refer to the same object (x == y
has the valuetrue
).Note that it is generally necessary to override the
hashCode
method whenever this method is overridden, so as to maintain the general contract for thehashCode
method, which states that equal objects must have equal hash codes. - It is reflexive: for any non-null reference value
-
hashCode
public int hashCode()
Returns a hash code for thisReadOnlyMapProperty
object.- Specified by:
hashCode
in interfaceMap<K,V>
- Overrides:
hashCode
in classObject
- Returns:
- a hash code for this
ReadOnlyMapProperty
object. - See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
-