- java.lang.Object
-
- javafx.beans.binding.MapExpression<K,V>
-
- Type Parameters:
K
- the type of the key elementsV
- the type of the value elements
- All Implemented Interfaces:
Map<K,V>
,Observable
,ObservableMapValue<K,V>
,ObservableObjectValue<K>
,ObservableValue<K>
,ObservableMap<K,V>
- Direct Known Subclasses:
MapBinding
,ReadOnlyMapProperty
public abstract class MapExpression<K,V> extends Object implements ObservableMapValue<K,V>
MapExpression
is anObservableMapValue
plus additional convenience methods to generate bindings in a fluent style.A concrete sub-class of
MapExpression
has to implement the methodObservableObjectValue.get()
, which provides the actual value of this expression.If the wrapped list of a
MapExpression
isnull
, all methods implementing theMap
interface will behave as if they were applied to an immutable empty list.- Since:
- JavaFX 2.1
-
-
Property Summary
Properties Type Property Description abstract ReadOnlyBooleanProperty
empty
A boolean property that istrue
, if the map is empty.abstract ReadOnlyIntegerProperty
size
An integer property that represents the size of the map.
-
Constructor Summary
Constructors Constructor Description MapExpression()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description StringBinding
asString()
void
clear()
Removes all of the mappings from this map (optional operation).boolean
containsKey(Object obj)
Returnstrue
if this map contains a mapping for the specified key.boolean
containsValue(Object obj)
Returnstrue
if this map maps one or more keys to the specified value.abstract ReadOnlyBooleanProperty
emptyProperty()
A boolean property that istrue
, if the map is empty.Set<Map.Entry<K,V>>
entrySet()
Returns aSet
view of the mappings contained in this map.V
get(Object key)
Returns the value to which the specified key is mapped, ornull
if this map contains no mapping for the key.int
getSize()
The size of the mapObservableMap<K,V>
getValue()
Returns the current value of thisObservableValue
boolean
isEmpty()
Gets the value of the property empty.BooleanBinding
isEqualTo(ObservableMap<?,?> other)
BooleanBinding
isNotEqualTo(ObservableMap<?,?> other)
BooleanBinding
isNotNull()
BooleanBinding
isNull()
Set<K>
keySet()
Returns aSet
view of the keys contained in this map.static <K,V> MapExpression<K,V>
mapExpression(ObservableMapValue<K,V> value)
Returns aMapExpression
that wraps aObservableMapValue
.V
put(K key, V value)
Associates the specified value with the specified key in this map (optional operation).void
putAll(Map<? extends K,? extends V> elements)
Copies all of the mappings from the specified map to this map (optional operation).V
remove(Object obj)
Removes the mapping for a key from this map if it is present (optional operation).int
size()
Returns the number of key-value mappings in this map.abstract ReadOnlyIntegerProperty
sizeProperty()
An integer property that represents the size of the map.ObjectBinding<V>
valueAt(ObservableValue<K> key)
Creates a newObjectBinding
that contains the mapping of the specified key.ObjectBinding<V>
valueAt(K key)
Creates a newObjectBinding
that contains the mapping of the specified key.Collection<V>
values()
Returns aCollection
view of the values contained in this map.-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, entry, equals, forEach, getOrDefault, hashCode, merge, of, of, of, of, of, of, of, of, of, of, of, ofEntries, putIfAbsent, remove, replace, replace, replaceAll
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, 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, removeListener
-
-
-
-
Property Detail
-
size
public abstract ReadOnlyIntegerProperty sizeProperty
An integer property that represents the size of the map.- See Also:
getSize()
-
empty
public abstract ReadOnlyBooleanProperty emptyProperty
A boolean property that istrue
, if the map is empty.- See Also:
isEmpty()
-
-
Method Detail
-
getValue
public ObservableMap<K,V> getValue()
Description copied from interface:ObservableValue
Returns the current value of thisObservableValue
- Specified by:
getValue
in interfaceObservableValue<K>
- Returns:
- The current value
-
mapExpression
public static <K,V> MapExpression<K,V> mapExpression(ObservableMapValue<K,V> value)
Returns aMapExpression
that wraps aObservableMapValue
. If theObservableMapValue
is already aMapExpression
, it will be returned. Otherwise a newMapBinding
is created that is bound to theObservableMapValue
.- Type Parameters:
K
- the type of the key elementsV
- the type of the value elements- Parameters:
value
- The sourceObservableMapValue
- Returns:
- A
MapExpression
that wraps theObservableMapValue
if necessary - Throws:
NullPointerException
- ifvalue
isnull
-
getSize
public int getSize()
The size of the map- Returns:
- the size
-
sizeProperty
public abstract ReadOnlyIntegerProperty sizeProperty()
An integer property that represents the size of the map.- See Also:
getSize()
-
emptyProperty
public abstract ReadOnlyBooleanProperty emptyProperty()
A boolean property that istrue
, if the map is empty.- See Also:
isEmpty()
-
valueAt
public ObjectBinding<V> valueAt(K key)
Creates a newObjectBinding
that contains the mapping of the specified key.- Parameters:
key
- the key of the mapping- Returns:
- the
ObjectBinding
-
valueAt
public ObjectBinding<V> valueAt(ObservableValue<K> key)
Creates a newObjectBinding
that contains the mapping of the specified key.- Parameters:
key
- the key of the mapping- Returns:
- the
ObjectBinding
- Throws:
NullPointerException
- ifkey
isnull
-
isEqualTo
public BooleanBinding isEqualTo(ObservableMap<?,?> other)
- Parameters:
other
- the otherObservableMap
- Returns:
- the new
BooleanBinding
- Throws:
NullPointerException
- ifother
isnull
-
isNotEqualTo
public BooleanBinding isNotEqualTo(ObservableMap<?,?> other)
- Parameters:
other
- the otherObservableMap
- Returns:
- the new
BooleanBinding
- Throws:
NullPointerException
- ifother
isnull
-
isNull
public BooleanBinding isNull()
- Returns:
- the new
BooleanBinding
-
isNotNull
public BooleanBinding isNotNull()
- Returns:
- the new
BooleanBinding
-
asString
public StringBinding asString()
Creates aStringBinding
that holds the value of theMapExpression
turned into aString
. If the value of thisMapExpression
changes, the value of theStringBinding
will be updated automatically.- Returns:
- the new
StringBinding
-
size
public int size()
Description copied from interface:Map
Returns the number of key-value mappings in this map. If the map contains more thanInteger.MAX_VALUE
elements, returnsInteger.MAX_VALUE
.
-
isEmpty
public boolean isEmpty()
Gets the value of the property empty.
-
containsKey
public boolean containsKey(Object obj)
Description copied from interface:Map
Returnstrue
if this map contains a mapping for the specified key. More formally, returnstrue
if and only if this map contains a mapping for a keyk
such thatObjects.equals(key, k)
. (There can be at most one such mapping.)- Specified by:
containsKey
in interfaceMap<K,V>
- Parameters:
obj
- key whose presence in this map is to be tested- Returns:
true
if this map contains a mapping for the specified key
-
containsValue
public boolean containsValue(Object obj)
Description copied from interface:Map
Returnstrue
if this map maps one or more keys to the specified value. More formally, returnstrue
if and only if this map contains at least one mapping to a valuev
such thatObjects.equals(value, v)
. This operation will probably require time linear in the map size for most implementations of theMap
interface.- Specified by:
containsValue
in interfaceMap<K,V>
- Parameters:
obj
- value whose presence in this map is to be tested- Returns:
true
if this map maps one or more keys to the specified value
-
put
public V put(K key, V value)
Description copied from interface:Map
Associates the specified value with the specified key in this map (optional operation). If the map previously contained a mapping for the key, the old value is replaced by the specified value. (A mapm
is said to contain a mapping for a keyk
if and only ifm.containsKey(k)
would returntrue
.)- Specified by:
put
in interfaceMap<K,V>
- Parameters:
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified key- Returns:
- the previous value associated with
key
, ornull
if there was no mapping forkey
. (Anull
return can also indicate that the map previously associatednull
withkey
, if the implementation supportsnull
values.)
-
remove
public V remove(Object obj)
Description copied from interface:Map
Removes the mapping for a key from this map if it is present (optional operation). More formally, if this map contains a mapping from keyk
to valuev
such thatObjects.equals(key, k)
, that mapping is removed. (The map can contain at most one such mapping.)Returns the value to which this map previously associated the key, or
null
if the map contained no mapping for the key.If this map permits null values, then a return value of
null
does not necessarily indicate that the map contained no mapping for the key; it's also possible that the map explicitly mapped the key tonull
.The map will not contain a mapping for the specified key once the call returns.
-
putAll
public void putAll(Map<? extends K,? extends V> elements)
Description copied from interface:Map
Copies all of the mappings from the specified map to this map (optional operation). The effect of this call is equivalent to that of callingput(k, v)
on this map once for each mapping from keyk
to valuev
in the specified map. The behavior of this operation is undefined if the specified map is modified while the operation is in progress.
-
clear
public void clear()
Description copied from interface:Map
Removes all of the mappings from this map (optional operation). The map will be empty after this call returns.
-
keySet
public Set<K> keySet()
Description copied from interface:Map
Returns aSet
view of the keys contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's ownremove
operation), the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via theIterator.remove
,Set.remove
,removeAll
,retainAll
, andclear
operations. It does not support theadd
oraddAll
operations.
-
values
public Collection<V> values()
Description copied from interface:Map
Returns aCollection
view of the values contained in this map. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa. If the map is modified while an iteration over the collection is in progress (except through the iterator's ownremove
operation), the results of the iteration are undefined. The collection supports element removal, which removes the corresponding mapping from the map, via theIterator.remove
,Collection.remove
,removeAll
,retainAll
andclear
operations. It does not support theadd
oraddAll
operations.
-
entrySet
public Set<Map.Entry<K,V>> entrySet()
Description copied from interface:Map
Returns aSet
view of the mappings contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's ownremove
operation, or through thesetValue
operation on a map entry returned by the iterator) the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via theIterator.remove
,Set.remove
,removeAll
,retainAll
andclear
operations. It does not support theadd
oraddAll
operations.
-
get
public V get(Object key)
Description copied from interface:Map
Returns the value to which the specified key is mapped, ornull
if this map contains no mapping for the key.More formally, if this map contains a mapping from a key
k
to a valuev
such thatObjects.equals(key, k)
, then this method returnsv
; otherwise it returnsnull
. (There can be at most one such mapping.)If this map permits null values, then a return value of
null
does not necessarily indicate that the map contains no mapping for the key; it's also possible that the map explicitly maps the key tonull
. ThecontainsKey
operation may be used to distinguish these two cases.
-
-